Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2686#discussion_r191042445
--- Diff: storm-server/src/main/java/org/apache/storm/DaemonConfig.java ---
@@ -279,6 +279,12 @@
@isString
public static final String
NIMBUS_WORKER_HEARTBEATS_RECOVERY_STRATEGY_CLASS =
"nimbus.worker.heartbeats.recovery.strategy.class";
+ /**
+ * This controls the number of milliseconds nimbus will wait before
deleting a topology blobstore once detected it is able to delete.
+ */
+ @isInteger
+ public static final String
NIMBUS_TOPOLOGY_BLOBSTORE_DELETION_DELAY_MSEC =
"nimbus.topology.blobstore.deletion.delay.msec";
--- End diff --
Nit: Other millisecond variables are postfixed "_MS" rather than "_MSEC"
---