gaborgsomogyi commented on code in PR #21604:
URL: https://github.com/apache/flink/pull/21604#discussion_r1062464051
##########
flink-runtime/src/main/java/org/apache/flink/runtime/security/token/DefaultDelegationTokenManager.java:
##########
@@ -120,8 +135,8 @@ private Map<String, DelegationTokenProvider>
loadProviders() {
} catch (Exception | NoClassDefFoundError e) {
LOG.warn(
"Failed to initialize delegation token provider {}",
- provider.serviceName(),
- e);
+ provider.serviceName());
+ LOG.debug(e.toString());
Review Comment:
This part has beeen changed significantly so I think worth a second look.
##########
flink-runtime/src/main/java/org/apache/flink/runtime/security/token/DefaultDelegationTokenManager.java:
##########
@@ -120,8 +135,8 @@ private Map<String, DelegationTokenProvider>
loadProviders() {
} catch (Exception | NoClassDefFoundError e) {
LOG.warn(
"Failed to initialize delegation token provider {}",
- provider.serviceName(),
- e);
+ provider.serviceName());
+ LOG.debug(e.toString());
Review Comment:
This part has been changed significantly so I think worth a second look.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]