dataengineervishal commented on code in PR #27784:
URL: https://github.com/apache/flink/pull/27784#discussion_r2958318712
##########
flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/ActorSystemBootstrapTools.java:
##########
@@ -251,7 +268,8 @@ public static ActorSystem startLocalActorSystem(
*/
private static ActorSystem startActorSystem(
Config config, String actorSystemName, Logger logger) {
- logger.debug("Using pekko configuration\n {}", config);
+ Map<String, String> masked =
ConfigurationUtils.hideSensitiveValues(toMap(config));
Review Comment:
Good catch, that makes sense. I’ve wrapped it with isDebugEnabled() so the
masking and map conversion only happen when debug logging is enabled.
--
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]