You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by zh...@apache.org on 2018/09/25 07:57:48 UTC

[pulsar] branch master updated: [tests] disable DeadLetterTopicTest#testDeadLetterTopicWithMultiTopic (#2650)

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

zhaijia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 7e8e8bc  [tests] disable DeadLetterTopicTest#testDeadLetterTopicWithMultiTopic (#2650)
7e8e8bc is described below

commit 7e8e8bc4338f76bd7694a486334c537c83294a73
Author: Sijie Guo <gu...@gmail.com>
AuthorDate: Tue Sep 25 00:57:43 2018 -0700

    [tests] disable DeadLetterTopicTest#testDeadLetterTopicWithMultiTopic (#2650)
    
    * [tests] disable DeadLetterTopicTest#testDeadLetterTopicWithMultiTopic
    
    * disable PartitionedTopicsSchemaTest
---
 .../pulsar/broker/service/schema/PartitionedTopicsSchemaTest.java   | 4 +++-
 .../test/java/org/apache/pulsar/client/api/DeadLetterTopicTest.java | 6 +++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/schema/PartitionedTopicsSchemaTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/schema/PartitionedTopicsSchemaTest.java
index 6e9b122..e7723d7 100644
--- a/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/schema/PartitionedTopicsSchemaTest.java
+++ b/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/schema/PartitionedTopicsSchemaTest.java
@@ -38,8 +38,10 @@ public class PartitionedTopicsSchemaTest extends BrokerBkEnsemblesTests {
 
     /**
      * Test that sequence id from a producer is correct when there are send errors
+     *
+     * the test is disabled {@link https://github.com/apache/pulsar/issues/2651}
      */
-    @Test
+    @Test(enabled = false)
     public void partitionedTopicWithSchema() throws Exception {
         admin.namespaces().createNamespace("prop/my-test", Collections.singleton("usc"));
 
diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/client/api/DeadLetterTopicTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/client/api/DeadLetterTopicTest.java
index 114152a..a0a286b 100644
--- a/pulsar-broker/src/test/java/org/apache/pulsar/client/api/DeadLetterTopicTest.java
+++ b/pulsar-broker/src/test/java/org/apache/pulsar/client/api/DeadLetterTopicTest.java
@@ -114,7 +114,11 @@ public class DeadLetterTopicTest extends ProducerConsumerBase {
         checkConsumer.close();
     }
 
-    @Test
+    /**
+     * The test is disabled {@link https://github.com/apache/pulsar/issues/2647}.
+     * @throws Exception
+     */
+    @Test(enabled = false)
     public void testDeadLetterTopicWithMultiTopic() throws Exception {
         final String topic1 = "persistent://my-property/my-ns/dead-letter-topic-1";
         final String topic2 = "persistent://my-property/my-ns/dead-letter-topic-2";