BewareMyPower commented on issue #24583: URL: https://github.com/apache/pulsar/issues/24583#issuecomment-3136300924
It can be reproduced by the following single test added to `OneWayReplicatorUsingGlobalPartitionedTest`. ```java @Test public void test() throws Exception { final String topic1 = "persistent://" + replicatedNamespace + "/tp1"; admin1.topics().createPartitionedTopic(topic1, 2); admin1.topicPolicies().setMessageTTL(topic1, 100); final String topic2 = "persistent://" + replicatedNamespace + "/tp2"; admin2.topics().createNonPartitionedTopic(topic2); admin2.topics().createSubscription(topic2, "sub", MessageId.earliest); admin1.topics().createNonPartitionedTopic(topic2); } ``` The CI can pass might due to `mvn test` run tests concurrently. This failure happens only when `testReplicatorsInflightTaskListIsEmptyAfterReplicationFinished` run before `testPartitionedTopicWithTopicPolicyAndNoReplicationClusters`. -- 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: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org