summaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-04-19 11:29:55 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2022-04-19 13:35:09 +0200
commitd965890a02a55f2761ef65e81185747084e37684 (patch)
tree092bc3e854b68ec861ec420383edd70d4846a7c1 /container-core/src/test/java/com/yahoo
parent607ba8c0e577e318890d9f253187ac290cf5eb05 (diff)
Improve class names for the container threadpools
Diffstat (limited to 'container-core/src/test/java/com/yahoo')
-rw-r--r--container-core/src/test/java/com/yahoo/container/handler/threadpool/ContainerThreadPoolImplTest.java (renamed from container-core/src/test/java/com/yahoo/container/handler/threadpool/DefaultContainerThreadPoolTest.java)8
1 files changed, 4 insertions, 4 deletions
diff --git a/container-core/src/test/java/com/yahoo/container/handler/threadpool/DefaultContainerThreadPoolTest.java b/container-core/src/test/java/com/yahoo/container/handler/threadpool/ContainerThreadPoolImplTest.java
index b56d89cafb3..536f7f599f2 100644
--- a/container-core/src/test/java/com/yahoo/container/handler/threadpool/DefaultContainerThreadPoolTest.java
+++ b/container-core/src/test/java/com/yahoo/container/handler/threadpool/ContainerThreadPoolImplTest.java
@@ -20,7 +20,7 @@ import static org.junit.Assert.fail;
* @author Steinar Knutsen
* @author bjorncs
*/
-public class DefaultContainerThreadPoolTest {
+public class ContainerThreadPoolImplTest {
private static final int CPUS = 16;
@@ -28,7 +28,7 @@ public class DefaultContainerThreadPoolTest {
public final void testThreadPool() throws InterruptedException {
Metric metrics = new MetricMock();
ContainerThreadpoolConfig config = new ContainerThreadpoolConfig(new ContainerThreadpoolConfig.Builder().maxThreads(1));
- ContainerThreadPool threadPool = new DefaultContainerThreadpool(config, metrics);
+ ContainerThreadPool threadPool = new ContainerThreadpoolImpl(config, metrics);
Executor exec = threadPool.executor();
Tuple2<Receiver.MessageState, Boolean> reply;
FlipIt command = new FlipIt();
@@ -66,7 +66,7 @@ public class DefaultContainerThreadPoolTest {
.maxThreads(maxThreads)
.minThreads(maxThreads)
.queueSize(queueSize));
- ContainerThreadPool threadPool = new DefaultContainerThreadpool(
+ ContainerThreadPool threadPool = new ContainerThreadpoolImpl(
config, metric, new MockProcessTerminator(), CPUS);
ExecutorServiceWrapper wrapper = (ExecutorServiceWrapper) threadPool.executor();
WorkerCompletionTimingThreadPoolExecutor executor = (WorkerCompletionTimingThreadPoolExecutor)wrapper.delegate();
@@ -128,7 +128,7 @@ public class DefaultContainerThreadPoolTest {
.maxThreadExecutionTimeSeconds(1));
MockProcessTerminator terminator = new MockProcessTerminator();
Metric metrics = new MetricMock();
- ContainerThreadPool threadPool = new DefaultContainerThreadpool(config, metrics, terminator);
+ ContainerThreadPool threadPool = new ContainerThreadpoolImpl(config, metrics, terminator);
// No dying when threads hang shorter than max thread execution time
threadPool.executor().execute(new Hang(500));