Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rtitle committed Nov 2, 2017
1 parent ce4fa7c commit 8ee7cdb
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,11 @@ class HttpGoogleIamDAO(serviceAccountClientId: String,
retryWhen500orGoogleError { () =>
executeGoogleRequest(creater)
} map { key =>
logger.info("Google returned " + key)
val res = WorkbenchUserServiceAccountKey(
WorkbenchUserServiceAccountKey(
WorkbenchUserServiceAccountKeyId(key.getName),
WorkbenchUserServiceAccountPrivateKeyData(key.getPrivateKeyData),
Option(key.getValidAfterTime).flatMap(googleTimestampToInstant),
Option(key.getValidBeforeTime).flatMap(googleTimestampToInstant))
logger.info("workbench key: " + res)
res
}
}

Expand Down

0 comments on commit 8ee7cdb

Please sign in to comment.