smjn commented on code in PR #21440:
URL: https://github.com/apache/kafka/pull/21440#discussion_r2786376707
##########
server/src/test/java/org/apache/kafka/server/NetworkPartitionMetadataClientTest.java:
##########
@@ -177,14 +177,14 @@ public void testListLatestOffsetsSuccess() throws
ExecutionException, Interrupte
Set<TopicPartition> partitions = new HashSet<>();
partitions.add(tp);
- Map<TopicPartition,
CompletableFuture<PartitionMetadataClient.OffsetResponse>> futures =
+ Map<TopicPartition,
CompletableFuture<org.apache.kafka.server.util.PartitionMetadataClient.OffsetResponse>>
futures =
networkPartitionMetadataClient.listLatestOffsets(partitions);
assertNotNull(futures);
assertEquals(1, futures.size());
assertTrue(futures.containsKey(tp));
- PartitionMetadataClient.OffsetResponse response =
futures.get(tp).get();
+ org.apache.kafka.server.util.PartitionMetadataClient.OffsetResponse
response = futures.get(tp).get();
Review Comment:
here
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]