Skip to content

Commit

Permalink
Merge pull request #47 from protegeproject/fix-issues-46
Browse files Browse the repository at this point in the history
Fixes #46
  • Loading branch information
matthewhorridge authored Aug 3, 2024
2 parents 5289db0 + afd22e3 commit d87997a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ private CompletableFuture<Void> createCompletableFutureForBatchAction(ImmutableL
var innerExecutionResult = ActionExecutionResult.get(innerResult);
resultList.set(index, innerExecutionResult);
} catch (ActionExecutionException e) {
resultList.add(ActionExecutionResult.get(e));
resultList.set(index, ActionExecutionResult.get(e));
} catch (PermissionDeniedException e) {
resultList.add(ActionExecutionResult.get(e));
resultList.set(index, ActionExecutionResult.get(e));
}
});
futures.add(future);
Expand Down

0 comments on commit d87997a

Please sign in to comment.