AyoubOm commented on code in PR #15607: URL: https://github.com/apache/kafka/pull/15607#discussion_r2029852092
########## streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/KTableKTableForeignKeyJoinIntegrationTest.java: ########## @@ -795,6 +796,12 @@ protected static Map<String, String> asMap(final KeyValueStore<String, ValueAndT return result; } + protected static List<KeyValue<String, String>> asList(final KeyValueStore<String, ValueAndTimestamp<String>> store) { + final List<KeyValue<String, String>> result = new LinkedList<>(); + store.all().forEachRemaining(kv -> result.add(new KeyValue<>(kv.key, kv.value.value()))); // TODO: find a better solution Review Comment: Yes, removing -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org