appengine-java-vm-runtime
appengine-java-vm-runtime copied to clipboard
@tswast
I am upgrading from vm:true to env:flex (via appengine-web.xml) and get the following error on one of my routes. `WARNING: Response for request to '/task/report/create' was already committed (code=302). This...
So, we had many of our parameters as EnvVars, but to make things work from `mvn jetty:run` we changed them to System.getProperties. Lots of `mvn jetty:run` support. So, I thought,...
Maven expects to find docker at localhost:2375, but on Docker for Mac it's at /var/run/docker.sock.
I'm trying to port over the new logging mechanism to the compat runtime to be used with a custom `logging.properties` file, but not having much luck. In my test app,...
AppEngineWebXml is constructed manually by parsing the file to a DOM and walking the tree. No validation is performed. We could simplify this by define a XSD to describe the...
It seems to me that API (Datastore, Google Cloud Storage...) timeouts are not respected. We have some requests that stay alive forever never finishing. Could be linked to ( https://github.com/GoogleCloudPlatform/appengine-java-vm-runtime/issues/17...
A customer is testing a MVM app written in Java. When using the old dev server, SSL configuration (https://cloud.google.com/appengine/docs/java/config/webxml#Secure_URLs) is ignored locally, but when using `gcloud preview app`, the SSL...
We'd really appreciate to be able to have a shutdown hook in order to clean server state (destroying connection pool to redis, to cassandra, emptying caches not yet persisted...) before...
The webdefault.xml currently uses the standard JspServlet, but should be updated to use the JettyJspServlet. See this jetty bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=452261 The JettyJspServlet supports correct handling of element, particularly in the...