From 29a083ca8f9a6def8a3a3dc405086190e5261587 Mon Sep 17 00:00:00 2001 From: dailidong Date: Fri, 16 Oct 2020 10:43:46 +0800 Subject: [PATCH] Update ThreadUtilsTest.java --- .../dolphinscheduler/common/threadutils/ThreadUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/threadutils/ThreadUtilsTest.java b/dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/threadutils/ThreadUtilsTest.java index 821399ed6..53441f046 100644 --- a/dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/threadutils/ThreadUtilsTest.java +++ b/dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/threadutils/ThreadUtilsTest.java @@ -37,7 +37,7 @@ public class ThreadUtilsTest { @Test public void testNewDaemonFixedThreadExecutor() { // create core size and max size are all 3 - ExecutorService testExec = ThreadUtils.newDaemonFixedThreadExecutor("test-exec-thread", 3); + ExecutorService testExec = ThreadUtils.newDaemonFixedThreadExecutor("test-exec-thread",3); for (int i = 0; i < 2; i++) { final int index = i; -- GitLab