2016-07-15 4 views
0

Google App Engine에 내 앱에 코드를 업로드 할 수 없습니다. 나는 골란에서 그것을 개발했다. 이 코드는 로컬 시스템에서 제대로 작동하지만 Google 애플 리케이션 엔진에서 업로드하려고 할 때 다음 오류가 발생합니다. 친절하게 도와주세요.Google App Engine에 golang 앱을 업로드 할 수 없습니다.

9:44 PM Getting current resource limits. 
09:44 PM Scanning files on local disk. 
09:45 PM Cloning 205 application files. 
09:45 PM Uploading 2 files and blobs. 
09:45 PM Uploaded 2 files and blobs. 
09:45 PM Compilation starting. 
09:45 PM Compilation: 178 files left. 
09:45 PM Error 422: --- begin server output --- 
Compile failed: 
2016/07/14 21:45:04 go-app-builder: build timing: 26×compile (6.651s total), 0×link (0 total) 
2016/07/14 21:45:04 go-app-builder: failed running compile: exit status 1 

golang.org/x/net/http2/server.go:156: undefined: isBadCipher 
golang.org/x/net/http2/server.go:320: undefined: isBadCipher 
golang.org/x/net/http2/transport.go:122: undefined: configureTransport 
golang.org/x/net/http2/transport.go:407: undefined: transportExpectContinueTimeout 
--- end server output --- 
09:45 PM Rolling back the update. 
Error 422: --- begin server output --- 

--- end server output --- 
error while running appcfg.py: exit status 1 
+1

사용중인 Go App Engine SDK의 버전은 무엇입니까? 'goapp version'을 실행하면 알 수 있습니다. – icza

+0

go 버전을 사용하고 있습니다. (appengine-1.9.35) linux/amd64 –

+0

'golang.org/x/net/http2' 패키지를 명시 적으로 import합니까? Go 작업 공간 ('GOPATH' env 변수)에 앱이 있습니까? 'GOPATH' 또는 앱 옆에'http2' 패키지가 다운로드 되었습니까? 최신 버전은'go version go1.6.1 (appengine-1.9.38) windows/amd64'입니다. 같은 오류가 발생합니까? – icza

답변

0

동일한 문제가 발생했습니다. 최신 SDK (현재 1.9.40)로 업데이트하면 해결되었습니다.

관련 문제