Github user kishorvpatil commented on a diff in the pull request: https://github.com/apache/storm/pull/2345#discussion_r143501314 --- Diff: storm-server/src/main/java/org/apache/storm/daemon/supervisor/Slot.java --- @@ -263,7 +314,41 @@ public String toString() { return "{ " + topoId + ": " + request + " }"; } } - + + /** + * Holds the information about a blob that is changing. + */ + static class BlobChangeing { --- End diff -- Does this need to be `BlobChanging`?
---