File tree 1 file changed +4
-3
lines changed
src/clj/backtype/storm/daemon
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 259
259
storm-code-map (read-storm-code-locations storm-cluster-state sync-callback)
260
260
assigned-storm-ids (set (keys storm-code-map))
261
261
downloaded-storm-ids (set (read-downloaded-storm-ids conf))
262
- new-assignment (->>
263
- (read-assignments
262
+ all-assignment (read-assignments
264
263
storm-cluster-state
265
264
(:supervisor-id supervisor)
266
265
sync-callback)
267
- (filter-key #(.confirmAssigned isupervisor %)))
266
+ new-assignment (->> all-assignment
267
+ (filter-key #(.confirmAssigned isupervisor %)))
268
268
existing-assignment (.get local-state LS-LOCAL-ASSIGNMENTS)]
269
269
(log-debug " Synchronizing supervisor" )
270
270
(log-debug " Storm code map: " storm-code-map)
271
271
(log-debug " Downloaded storm ids: " downloaded-storm-ids)
272
+ (log-debug " All assignment: " all-assignment)
272
273
(log-debug " New assignment: " new-assignment)
273
274
; ; download code first
274
275
; ; This might take awhile
You can’t perform that action at this time.
0 commit comments