alshabib

some extra comments

Change-Id: Icde01e92c15b716a32cacfb658cb93f42234ab34
...@@ -521,9 +521,8 @@ public class IntentManager ...@@ -521,9 +521,8 @@ public class IntentManager
521 Future<CompletedBatchOperation> future = i.next(); 521 Future<CompletedBatchOperation> future = i.next();
522 try { 522 try {
523 // TODO: we may want to get the future here and go back to the future. 523 // TODO: we may want to get the future here and go back to the future.
524 - future.get(100, TimeUnit.NANOSECONDS); 524 + CompletedBatchOperation completed = future.get(100, TimeUnit.NANOSECONDS);
525 - 525 + // TODO check if future succeeded and if not report fail items
526 -
527 i.remove(); 526 i.remove();
528 527
529 } catch (TimeoutException | InterruptedException | ExecutionException te) { 528 } catch (TimeoutException | InterruptedException | ExecutionException te) {
......