guozhangwang commented on a change in pull request #11252: URL: https://github.com/apache/kafka/pull/11252#discussion_r701252642
########## File path: streams/src/main/java/org/apache/kafka/streams/kstream/internals/KStreamKStreamJoin.java ########## @@ -146,7 +146,7 @@ public void process(final K key, final V1 value) { outerJoinWindowStore.ifPresent(store -> { // Delete the joined record from the non-joined outer window store - store.put(KeyAndJoinSide.make(!isLeftSide, key), null, otherRecordTimestamp); + store.put(KeyAndJoinSide.make(!isLeftSide, key, otherRecordTimestamp), null); Review comment: Same as above. -- 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