Github user agresch commented on a diff in the pull request:
https://github.com/apache/storm/pull/2630#discussion_r180805036
--- Diff:
storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/scheduling/BaseResourceAwareStrategy.java
---
@@ -49,20 +49,30 @@
protected Cluster cluster;
private Map<String, List<String>> networkTopography;
protected RAS_Nodes nodes;
+ /**
+ * Should be used by subclasses to know if they have been asked to
stop scheduling.
+ */
+ protected volatile boolean running;
--- End diff --
scheduling might be more descriptive?
---