Skip to content

Commit 100ade1

Browse files
chore: drop keycloak warning to debug log (#16744)
1 parent 1af9f6a commit 100ade1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-commons-server/src/main/java/io/airbyte/commons/server/authorization/KeycloakTokenValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private Mono<Boolean> validateTokenWithKeycloak(final String token) {
200200
log.debug("Response from userinfo endpoint: {}", responseBody);
201201
return validateUserInfo(responseBody);
202202
} else {
203-
log.warn("Non-200 response from userinfo endpoint: {}", response.code());
203+
log.debug("Non-200 response from userinfo endpoint: {}", response.code());
204204
return Mono.just(false);
205205
}
206206
} catch (final Exception e) {

0 commit comments

Comments
 (0)