From c69b409b30f0f43b478a2a61010a966fe423ccff Mon Sep 17 00:00:00 2001 From: mcilwain Date: Wed, 27 Sep 2017 08:01:39 -0700 Subject: [PATCH] Add java8 runtime option to production appengine-web.xml files It occurs to me that we can't have this setting different between sandbox and production, otherwise we can end up with a situation where we push code that works on sandbox but then fails only when it is pushed to production. Sandbox and production need to always be set up similarly for this reason. We'll just have to pay a greater amount of attention to the release process next week than normal, and continue playing around in alpha for the mean time with a fully Java 8 build. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=170197703 --- .../registry/env/production/backend/WEB-INF/appengine-web.xml | 1 + .../registry/env/production/default/WEB-INF/appengine-web.xml | 1 + .../registry/env/production/tools/WEB-INF/appengine-web.xml | 1 + 3 files changed, 3 insertions(+) diff --git a/java/google/registry/env/production/backend/WEB-INF/appengine-web.xml b/java/google/registry/env/production/backend/WEB-INF/appengine-web.xml index 3dbbbc1c2..c5a10f8fa 100644 --- a/java/google/registry/env/production/backend/WEB-INF/appengine-web.xml +++ b/java/google/registry/env/production/backend/WEB-INF/appengine-web.xml @@ -3,6 +3,7 @@ domain-registry 1 + java8 backend true true diff --git a/java/google/registry/env/production/default/WEB-INF/appengine-web.xml b/java/google/registry/env/production/default/WEB-INF/appengine-web.xml index 0b2da7b6b..8afde29d1 100644 --- a/java/google/registry/env/production/default/WEB-INF/appengine-web.xml +++ b/java/google/registry/env/production/default/WEB-INF/appengine-web.xml @@ -3,6 +3,7 @@ domain-registry 1 + java8 default true true diff --git a/java/google/registry/env/production/tools/WEB-INF/appengine-web.xml b/java/google/registry/env/production/tools/WEB-INF/appengine-web.xml index 11b6162eb..0ad010c06 100644 --- a/java/google/registry/env/production/tools/WEB-INF/appengine-web.xml +++ b/java/google/registry/env/production/tools/WEB-INF/appengine-web.xml @@ -3,6 +3,7 @@ domain-registry 1 + java8 tools true true