You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOGGER.info("JWT is required, but was not received. Attestation validation failed. SiteId: {}, Name: {}, Contact: {}", operatorKey.getSiteId(), operatorKey.getName(), operatorKey.getContact());
108
-
success = false;
109
108
}
110
109
}
111
110
}
112
111
}
113
112
113
+
if (!isJwtValid && this.enforceJwt) {
114
+
LOGGER.info("JWT validation has failed.");
115
+
success = false;
116
+
} elseif (!isJwtValid && !this.enforceJwt) {
117
+
LOGGER.info("JWT validation has failed, but JWTs are not being enforced.");
0 commit comments