|
@@ -69,7 +69,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, false, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -95,7 +95,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, false, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()));
|
|
|
init(internalTopics);
|
|
|
|
|
@@ -122,7 +122,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, false, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -141,7 +141,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, false, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -160,7 +160,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, Integer.parseInt(name) % 10 == 0, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -181,7 +181,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, Integer.parseInt(name) % 5 == 0, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -202,7 +202,7 @@ class TopicsServicePaginationTest {
|
|
|
.map(Objects::toString)
|
|
|
.map(name -> new TopicDescription(name, false, List.of()))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), null,
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()))
|
|
|
);
|
|
|
|
|
@@ -224,7 +224,7 @@ class TopicsServicePaginationTest {
|
|
|
new TopicPartitionInfo(p, null, List.of(), List.of()))
|
|
|
.collect(Collectors.toList())))
|
|
|
.map(topicDescription -> InternalTopic.from(topicDescription, List.of(), InternalPartitionsOffsets.empty(),
|
|
|
- Metrics.empty(), InternalLogDirStats.empty()))
|
|
|
+ Metrics.empty(), InternalLogDirStats.empty(), "_"))
|
|
|
.collect(Collectors.toMap(InternalTopic::getName, Function.identity()));
|
|
|
|
|
|
init(internalTopics);
|