私は App Engine でブログのステージング セットアップをホストしており、数十のバージョンが正常に動作しています。私の main.go ファイルは非常に単純ですが、デプロイしようとすると、コマンドラインで「内部エラー」が発生します。
You may also view the gcloud log file, found at
[/Users/id/.config/gcloud/logs/2016.11.28/10.18.23.292328.log].
File upload done.
Updating service [default]...failed.
ERROR: (gcloud.app.deploy) Error Response: [13] An internal error occurred.
ログ ファイルの最後のチャンクは、エラーの原因については役に立ちません。
2016-11-28 10:18:50,133 DEBUG root Operation [apps/blog-149523/operations/2a31964d-4f0c-4c1c-9fd7-844d36be257f] complete. Result: {
"metadata": {
"target": "apps/blog-149523/services/default/versions/20161128t101823",
"method": "google.appengine.v1beta5.Versions.CreateVersion",
"user": "ian.douglas@iandouglas.com",
"insertTime": "2016-11-28T17:18:34.140Z",
"endTime": "2016-11-28T17:18:47.381Z",
"@type": "type.googleapis.com/google.appengine.v1beta5.OperationMetadataV1Beta5"
},
"done": true,
"name": "apps/blog-149523/operations/2a31964d-4f0c-4c1c-9fd7-844d36be257f",
"error": {
"message": "An internal error occurred.",
"code": 13
}
}
2016-11-28 10:18:50,134 DEBUG root (gcloud.app.deploy) Error Response: [13] An internal error occurred.
Traceback (most recent call last):
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/calliope/cli.py", line 740, in Execute
resources = args.calliope_command.Run(cli=self, args=args)
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/calliope/backend.py", line 1648, in Run
resources = command_instance.Run(args)
File "/Users/id/src/public/google-cloud-sdk/lib/surface/app/deploy.py", line 53, in Run
return deploy_util.RunDeploy(args, app_create=True)
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/command_lib/app/deploy_util.py", line 410, in RunDeploy
all_services)
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/command_lib/app/deploy_util.py", line 257, in Deploy
endpoints_info)
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/api_lib/app/appengine_api_client.py", line 119, in DeployService
return operations.WaitForOperation(self.client.apps_operations, operation)
File "/Users/id/src/public/google-cloud-sdk/lib/googlecloudsdk/api_lib/app/api/operations.py", line 70, in WaitForOperation
encoding.MessageToPyValue(completed_operation.error)))
OperationError: Error Response: [13] An internal error occurred.
2016-11-28 10:18:50,135 ERROR root (gcloud.app.deploy) Error Response: [13] An internal error occurred.
2016-11-28 10:18:50,501 DEBUG root Metrics reporting process started...
「内部エラー 13」を検索すると、SO でさえ、これは「一時的な」エラーであり、自然に消えるはずだと多くの回答が得られましたが、私はこれに 1 週間以上対処してきました。
main.go を可能な限り簡素化しましたが、役に立ちませんでした。
package main
import (
"net/http"
"fmt"
)
func init() {
http.HandleFunc("/_ah/health", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "OK") })
http.Handle("/", http.FileServer(http.Dir("public")))
}
しかし、デプロイ プロセスは私の Go コードが悪いと文句を言っているのではなく、毎回この漠然とした内部エラー 13 をスローしているだけであり、それが本当にサーバー側なのか、それとも私が行ったことなのかについての情報を見つけることができません。
助けてくれてありがとう!