Anyone encountered a "composite struct literal net.IP with unkeyed fields" error when deploying to appengine? This error pops up recently when i tried to deploy my go app to appengine. I'm using 1.9.40 sdk with go 1.6.2. this is very strange coz i never had this problem before nor changed anything related to it. Local devserver compiles just fine. It's the cloud compile making the complaint. It makes no sense to me because net.IP and asn1.ObjectIdentifier are both array not struct in official golang library. Is it a glitch in app engine or something?
Below is the actual error. Compile failed: 2016/10/19 21:21:14 go-app-builder: Failed parsing input (1 error) 2016/10/19 21:21:14 k8s.io/kubernetes/pkg/util/net/interface.go:243:10: composite struct literal net.IP with unkeyed fields --- end server output --- 2016-10-20 12:21:16,350 INFO appcfg.py:2574 HTTP Error (HTTP Error 422: Unprocessable Entity Unexpected HTTP status 422) 12:21 PM Rolling back the update. Sometimes it shows a similar in a difference file like this: Compile failed: 2016/10/19 21:21:58 go-app-builder: Failed parsing input (6 errors) 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:293:14: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:325:39: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:328:19: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:332:16: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:336:15: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields 2016/10/19 21:21:58 github.com/cloudflare/cfssl/signer/signer.go:380:13: composite struct literal encoding/asn1.ObjectIdentifier with unkeyed fields --- end server output --- 12:21 PM Rolling back the update. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/20ae24e1-e9e4-475b-a125-b4c9c3ef5eb3%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
