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

lta pushed a commit to branch cluster_concurrent
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/cluster_concurrent by this 
push:
     new e207b2c  fix ut bug
e207b2c is described below

commit e207b2c98a91aa9d100d11bd5b6ae49dd7745a11
Author: lta <[email protected]>
AuthorDate: Thu Apr 11 17:35:54 2019 +0800

    fix ut bug
---
 .../org/apache/iotdb/cluster/concurrent/pool/QPTaskManagerTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/cluster/src/test/java/org/apache/iotdb/cluster/concurrent/pool/QPTaskManagerTest.java
 
b/cluster/src/test/java/org/apache/iotdb/cluster/concurrent/pool/QPTaskManagerTest.java
index f9f1ac3..77ccf23 100644
--- 
a/cluster/src/test/java/org/apache/iotdb/cluster/concurrent/pool/QPTaskManagerTest.java
+++ 
b/cluster/src/test/java/org/apache/iotdb/cluster/concurrent/pool/QPTaskManagerTest.java
@@ -79,7 +79,7 @@ public class QPTaskManagerTest {
       new Thread(changeMark).start();
       qpTaskManager.close(true, blockTimeOut);
     } catch (ProcessorException e) {
-      assertEquals("QPTask thread pool doesn't exit after 10 ms", 
e.getMessage());
+      assertEquals("qp task manager thread pool doesn't exit after 10 ms", 
e.getMessage());
     }
 
     Thread.sleep(blockTimeOut * 2);
@@ -95,7 +95,7 @@ public class QPTaskManagerTest {
       new Thread(changeMark).start();
       qpTaskManager.close(true, blockTimeOut / 10);
     } catch (ProcessorException e) {
-      assertEquals("QPTask thread pool doesn't exit after 1 ms", 
e.getMessage());
+      assertEquals("qp task manager thread pool doesn't exit after 1 ms", 
e.getMessage());
     }
   }
 }
\ No newline at end of file

Reply via email to