Skip to content

Commit 8fd2c7c

Browse files
mattwhisenhuntlesv
authored andcommitted
Fix copy and paste bug.
1 parent a088a65 commit 8fd2c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-api-client/src/main/java/com/google/api/client/googleapis/auth/oauth2/DefaultCredentialProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ private GoogleCredential getCredentialUsingWellKnownFile(
259259

260260
private boolean runningOnAppEngine() {
261261
Map<String, String> env = System.getenv();
262-
if (env.containsKey("GAE_ENV") && env.get("GAE_VM").equals("standard")) {
262+
if (env.containsKey("GAE_ENV") && env.get("GAE_ENV").equals("standard")) {
263263
return true;
264264
}
265265
if (env.containsKey("GAE_RUNTIME") &&

0 commit comments

Comments
 (0)