Skip to content

Commit

Permalink
Fix copy and paste bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwhisenhunt authored and lesv committed Feb 16, 2018
1 parent a088a65 commit 8fd2c7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private GoogleCredential getCredentialUsingWellKnownFile(

private boolean runningOnAppEngine() {
Map<String, String> env = System.getenv();
if (env.containsKey("GAE_ENV") && env.get("GAE_VM").equals("standard")) {
if (env.containsKey("GAE_ENV") && env.get("GAE_ENV").equals("standard")) {
return true;
}
if (env.containsKey("GAE_RUNTIME") &&
Expand Down

0 comments on commit 8fd2c7c

Please sign in to comment.