vvcephei commented on a change in pull request #11236: URL: https://github.com/apache/kafka/pull/11236#discussion_r692334950
########## File path: tests/kafkatest/services/streams.py ########## @@ -659,14 +663,15 @@ def __init__(self, test_context, kafka): def prop_file(self): properties = {streams_property.STATE_DIR: self.PERSISTENT_ROOT, - streams_property.KAFKA_SERVERS: self.kafka.bootstrap_servers()} - - properties['input.topic'] = self.INPUT_TOPIC - properties['aggregation.topic'] = self.AGGREGATION_TOPIC - properties['add.operations'] = self.ADD_ADDITIONAL_OPS + streams_property.KAFKA_SERVERS: self.kafka.bootstrap_servers(), + 'input.topic': self.INPUT_TOPIC, + 'aggregation.topic': self.AGGREGATION_TOPIC, + 'add.operations': self.ADD_ADDITIONAL_OPS, + "acceptable.recovery.lag": "9223372036854775807", # enable a one-shot assignment + "session.timeout.ms": "10000" # set back to 10s for tests. See KIP-735 + } # Long.MAX_VALUE lets us do the assignment without a warmup Review comment: ```suggestion ``` -- 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