This is an automated email from the ASF dual-hosted git repository.
ableegoldman pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new ee8e7578789 temporarily disable the 'false' parameter (#13147)
ee8e7578789 is described below
commit ee8e7578789e02e369ce933341501a383b62d5dd
Author: A. Sophie Blee-Goldman <[email protected]>
AuthorDate: Mon Jan 23 15:24:35 2023 -0800
temporarily disable the 'false' parameter (#13147)
Need to get a clean build for 3.4 and this test has been extremely flaky.
I'm looking into the failure as well, and want to pinpoint whether it's the
true build that's broken or it's the parameterization itself causing this --
thus, let's start by temporarily disabling the false parameter first.
See KAFKA-14533 for more details
Reviewers: Lucas Brutschy <[email protected]>
---
.../kafka/streams/integration/SmokeTestDriverIntegrationTest.java | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git
a/streams/src/test/java/org/apache/kafka/streams/integration/SmokeTestDriverIntegrationTest.java
b/streams/src/test/java/org/apache/kafka/streams/integration/SmokeTestDriverIntegrationTest.java
index ee7cbe462b3..34336c05046 100644
---
a/streams/src/test/java/org/apache/kafka/streams/integration/SmokeTestDriverIntegrationTest.java
+++
b/streams/src/test/java/org/apache/kafka/streams/integration/SmokeTestDriverIntegrationTest.java
@@ -96,15 +96,16 @@ public class SmokeTestDriverIntegrationTest {
private static Stream<Boolean> parameters() {
return Stream.of(
- Boolean.TRUE,
- Boolean.FALSE
+ // TODO KAFKA-14533: debug and re-enable both parameters
+ Boolean.TRUE
+ //Boolean.FALSE
);
}
// In this test, we try to keep creating new stream, and closing the old
one, to maintain only 3 streams alive.
// During the new stream added and old stream left, the stream process
should still complete without issue.
// We set 2 timeout condition to fail the test before passing the
verification:
- // (1) 6 min timeout, (2) 30 tries of polling without getting any data
+ // (1) 10 min timeout, (2) 30 tries of polling without getting any data
@ParameterizedTest
@MethodSource("parameters")
public void shouldWorkWithRebalance(final boolean stateUpdaterEnabled)
throws InterruptedException {