Skip to content

Commit 544e04f

Browse files
committed
address comment
1 parent b403181 commit 544e04f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/org/apache/kafka/server/purgatory/DelayedRemoteFetch.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ public void onComplete() {
163163

164164
CompletableFuture<RemoteLogReadResult> remoteFetchResult = remoteFetchResults.get(tp);
165165
if (remoteFetchInfos.containsKey(tp)
166-
&& remoteFetchResult.isDone() && result.error() == Errors.NONE
166+
&& remoteFetchResult.isDone()
167+
&& result.error() == Errors.NONE
167168
&& result.info().delayedRemoteStorageFetch.isPresent()) {
168169

169170
if (remoteFetchResult.get().error().isPresent()) {

0 commit comments

Comments
 (0)