Skip to content

Commit

Permalink
chore: fix codestyle, no concatenated strings
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier committed Dec 21, 2023
1 parent 8175b71 commit 5f6c547
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,10 @@ private Oauth2ServiceConfiguration createConfig(ServiceExtensionContext context)

private int getIssuedAtValidationLeeway(ServiceExtensionContext context) {
if (!context.getConfig().hasKey(ISSUED_AT_LEEWAY)) {
var message = format("No value was configured for '%s'. Consider setting a leeway " +
"of 2-5s in production to avoid problems with clock skew.", ISSUED_AT_LEEWAY);
var message = format(
"No value was configured for '%s'. Consider setting a leeway of 2-5s in production to avoid problems with clock skew.",
ISSUED_AT_LEEWAY
);
context.getMonitor().info(message);
}

Expand Down

0 comments on commit 5f6c547

Please sign in to comment.