On Wed, Oct 29, 2014 at 7:01 PM, <[email protected]> wrote: > *There is a 422 error when I tried to deploy my app, is there something > wrong? where can I open a case?* > > github.com/astaxie/beego/app.go:21: can't find import: "net/http/fcgi" >
You're attempting to import the FastCGI package, which isn't necessary. FastCGI essentially implements its own web server - you can't do that on App Engine (for instance, you can't bind to a port). You need to edit your code so that it can handle all processing through net/http, such as this demo app: https://cloud.google.com/appengine/docs/go/gettingstarted/helloworld ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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 http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
