You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by vv...@apache.org on 2020/10/23 18:18:11 UTC

[kafka] branch 2.4 updated: KAFKA-10284: Disable static membership test in 2.4 (#9481)

This is an automated email from the ASF dual-hosted git repository.

vvcephei pushed a commit to branch 2.4
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.4 by this push:
     new d2eff7d  KAFKA-10284: Disable static membership test in 2.4 (#9481)
d2eff7d is described below

commit d2eff7d4ce4fbe03e581d6ca860a4e3f20d193a5
Author: John Roesler <vv...@users.noreply.github.com>
AuthorDate: Fri Oct 23 13:16:34 2020 -0500

    KAFKA-10284: Disable static membership test in 2.4 (#9481)
    
    * KAFKA-10284: Disable static membership test in 2.4
    
    * Update tests/kafkatest/tests/streams/streams_static_membership_test.py
    
    Co-authored-by: John Roesler <vv...@apache.org>
---
 tests/kafkatest/tests/streams/streams_static_membership_test.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/kafkatest/tests/streams/streams_static_membership_test.py b/tests/kafkatest/tests/streams/streams_static_membership_test.py
index a466ea8..c5bbb6d 100644
--- a/tests/kafkatest/tests/streams/streams_static_membership_test.py
+++ b/tests/kafkatest/tests/streams/streams_static_membership_test.py
@@ -13,6 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+from ducktape.mark import ignore
 from ducktape.tests.test import Test
 from kafkatest.services.kafka import KafkaService
 from kafkatest.services.streams import StaticMemberTestService
@@ -48,6 +49,10 @@ class StreamsStaticMembershipTest(Test):
                                            throughput=1000,
                                            acks=1)
 
+    # This test fails due to a bug that is fixed in 2.5+ (KAFKA-10284). We opted not to backport
+    # the fix to 2.4 and instead marked this test as ignored. If desired, the fix can be backported,
+    # but it is non-trivial to do so.
+    @ignore
     def test_rolling_bounces_will_not_trigger_rebalance_under_static_membership(self):
         self.zookeeper.start()
         self.kafka.start()