appengine
appengine copied to clipboard
Go App Engine packages
I'm a contributor to the Go language and [a consultant](https://burke.services) who spends a lot of time on builds, devops, and deploys. Presumably I should be able to figure out how...
I have a service that attempts to invoke a DelayFunc. The func lives and is invoked from a non-default service. The default service is a Python app that at the...
Following app engine golang tutorial it is simply to run hello world app https://github.com/GoogleCloudPlatform/appengine-guestbook-go/tree/part1-helloworld main.go ```go package hello import ( "fmt" "net/http" ) func init() { http.HandleFunc("/", handler) } func...
The `AllocateIds()` function that is implemented in the `google.golang.org/appengine/datastore` package only allows you to allocate a range of ID:s. This method of generating ID:s is considered legacy and causes hot...
I recently switched OS to Linux noticed that I no longer get auto recompiling of my Appengine code (standard environment) on changes. I also upgraded the app from Go1.6 to...
Hi! I just wanted to raise the question, since `aetest` currently outputs the warning about the old emulator in `dev_appserver` being superseded by the Datastore emulator (which works excellent). What...
```go package main import ( "net/http" "testing" "google.golang.org/appengine/aetest" ) func TestSomething(t *testing.T) { inst, err := aetest.NewInstance(nil) if err != nil { t.Fatalf("Failed to create instance: %v", err) } defer...
Thank you for your time in advance The same problem of #74 seems to happen again with Cloud SDK version 190.0.1 Found this error when running goapp serve: ``` File...
I am migrating an app from AppEngine Flex to AppEngine Standard. AppEngine Flex allows storing a slice of slices. It seems Python allows that too: https://www.e-learn.cn/content/wangluowenzhang/493885 Perhaps this check is...
Hi, I know that gcloud has SSL support, but it doesn't cover wildcard subdomains like *.example.com. I'm working on a gcloud project that has to have subdomains like this, and...