appengine
appengine copied to clipboard
Go App Engine packages
I keep getting the same error over and over. ``` appengine: NewContext passed an unknown http.Request ``` I'm trying to daisy chain my middleware (auth, logging) with Gorilla Mux. Each...
I've noticed that my task workers never run in tests, and there's an almost complete de-coupling of enqueue/dequeue logic in testing that prevents me from even verifying that the task...
Hi all. I'd love to see support added for custom push queues in test. This is currently an issue for me. When I try to run tests that touch the...
describes how in Java and Python it is possible to recover from a deadline exceeded error and get 1 second to perform some cleanup. I can see no trace of...
tl;dr: provide a simple XML GCS client for use with app engine dev_appserver.py provides a simple emulator for GCS. It emulates [the XML API](https://cloud.google.com/storage/docs/xml-api/overview). Currently, we recommend people use the...
One of Google's other golang datastore clients has implemented a feature I find rather handy: allowing pointers to struct fields (as well as some other stuff). https://github.com/GoogleCloudPlatform/google-cloud-go/commit/0e0ec87d77f27fbf630f4599b7134faba020634f Unfortunately, *that* library's...
Benefits: - Allow developers to migrate to new "context" package (_Since 1.9 `golang.org/x/net/context` is aliased to `context`_) - Decrease build time, especially in DEV (_https://golang.org/doc/go1.10#build_) - Better performance (https://golang.org/doc/go1.10#performance) -...
Hello guys, The documentation states that we should run the tests with "goapp test"... however "goapp" is now replaced with "gcloud", and I couldn't find a "gcloud app test" command....
I would like an easier way to interface with kms/ testing kms. Right now there is only the client library, or writing the rest code manually, neither case which supports...
for large durations such as `time.ParseDuration("6001h30m55.402963s")` memcache does not save the data to the cache, but does not produce an error either. Making it a more reasonably small duration works...