Skip to content

Commit

Permalink
add eslint error for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nielm committed Nov 27, 2023
1 parent 534ba5d commit c240555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudrun-malware-scanner/gcs-proxy-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function accessTokenRefresh() {
new Date().getTime() + TOKEN_REFRESH_THRESHOLD_MILLIS) {
accessToken = await googleAuth.getAccessToken();
logger.info(`Access token expires at ${
new Date(client.credentials.expiry_date).toISOString()}`);
new Date(client.credentials.expiry_date).toISOString()}`);

Check failure on line 51 in cloudrun-malware-scanner/gcs-proxy-server.js

View workflow job for this annotation

GitHub Actions / Eslint-analyze

Expected indentation of 6 spaces but found 8
}
const nextCheckDate =
new Date(client.credentials.expiry_date - TOKEN_REFRESH_THRESHOLD_MILLIS);
Expand Down

0 comments on commit c240555

Please sign in to comment.