🐷
serverless deploy Error:Socket connection timeout
上記の記事の手順通りにserverlessでdeployしてもうまくいかなかった
エラーとしては、下記の感じだった
~~
Recoverable error occurred (Socket connection timeout), sleeping for ~7 seconds. Try 1 of 4
Recoverable error occurred (Socket connection timeout), sleeping for ~4 seconds. Try 2 of 4
Recoverable error occurred (Socket connection timeout), sleeping for ~4 seconds. Try 3 of 4
Recoverable error occurred (Socket connection timeout), sleeping for ~6 seconds. Try 4 of 4
~~
Error:Socket connection timeout
解決
リージョンを東京に変更する
serverless.yml
provider:
region: ap-northeast-1 //ここを追加
デフォルトではus-northeast-1に作られるのだがそれがうまくいってなかった。
cloudformationまでは作成されるのだがそれ以降のlambda等の作成ができていなかった
Discussion