Details
-
Wish
-
Status: Closed
-
Minor
-
Resolution: Won't Fix
-
2.4
-
None
-
None
Description
Currently, in IgfsImpl.stop(), cancel parameter is not used, and all batches are cancelled regardless:
for (IgfsFileWorkerBatch batch : workerMap.values())
batch.cancel();
I imagine, if cancel == false, we should await() batches which are finishing(), as per await(). WDYT?