Skip to content

Commit

Permalink
OAK-9113 - Make the segment migrator more resilient to timeouts
Browse files Browse the repository at this point in the history
- added missing semicolon

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1879091 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
trekawek committed Jun 22, 2020
1 parent 3ece1d4 commit 18f0e3e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -189,7 +189,7 @@ private void migrateSegments(SegmentArchiveReader reader, SegmentArchiveWriter w

for (Future<Segment> future : futures) {
Segment segment = future.get();
runWithRetry(() -> {segment.write(writer); return null}, 16, 5);
runWithRetry(() -> {segment.write(writer); return null;}, 16, 5);
}
}

Expand Down

0 comments on commit 18f0e3e

Please sign in to comment.