File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
fluss-server/src/main/java/com/alibaba/fluss/server/log Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -456,7 +456,7 @@ public void updateRemoteLogEndOffset(long remoteLogEndOffset) {
456456 if (remoteLogEndOffset > this .remoteLogEndOffset ) {
457457 this .remoteLogEndOffset = remoteLogEndOffset ;
458458
459- // try to delete these segments already exits in remote storage.
459+ // try to delete these segments already exist in remote storage.
460460 deleteSegmentsAlreadyExistsInRemote ();
461461 }
462462 }
Original file line number Diff line number Diff line change @@ -105,9 +105,6 @@ public void copyLogSegmentFiles(
105105 List <CompletableFuture <Void >> futures =
106106 createUploadFutures (remoteLogSegment , logSegmentFiles );
107107 FutureUtils .waitForAll (futures ).get ();
108- for (CompletableFuture <Void > future : futures ) {
109- future .get ();
110- }
111108 } catch (ExecutionException e ) {
112109 Throwable throwable = ExceptionUtils .stripExecutionException (e );
113110 throwable = ExceptionUtils .stripException (throwable , RuntimeException .class );
You can’t perform that action at this time.
0 commit comments