Skip to content

Commit

Permalink
Fixed typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
tkmcmaster committed Aug 29, 2024
1 parent 6010cdb commit 94fe534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/src/healthcheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function pingS3 (): Promise<boolean> {
log("Pinging S3 succeeded at " + new Date(), LogLevel.DEBUG);
return true;
} catch (error) {
log("pingS3 failed}", LogLevel.ERROR, error);
log("pingS3 failed", LogLevel.ERROR, error);
// DO NOT REJECT. Just return false
return false;
}
Expand Down

0 comments on commit 94fe534

Please sign in to comment.