Github user agresch commented on a diff in the pull request:
https://github.com/apache/storm/pull/2843#discussion_r218902320
--- Diff:
storm-client/src/jvm/org/apache/storm/cluster/StormClusterStateImpl.java ---
@@ -903,6 +911,7 @@ public void removeAllPrivateWorkerKeys(String
topologyId) {
for (WorkerTokenServiceType type :
WorkerTokenServiceType.values()) {
String path = ClusterUtils.secretKeysPath(type, topologyId);
try {
+ LOG.debug("Removing worker keys under {}", path);
--- End diff --
If this does not hit often, I would vote for making this info.
---