Skip to content

Commit

Permalink
Do not serialize CountDownLatch (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Mar 17, 2022
1 parent da5a4bf commit 79e858e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ public static class CoordinatedComputedFolder extends ComputedFolder<FreeStylePr
int round;
List<String> created = new ArrayList<>();
List<String> deleted = new ArrayList<>();
CountDownLatch compute = new CountDownLatch(2);
transient CountDownLatch compute = new CountDownLatch(2);

private CoordinatedComputedFolder(ItemGroup parent, String name) {
super(parent, name);
Expand Down

0 comments on commit 79e858e

Please sign in to comment.