summaryrefslogtreecommitdiffstats
path: root/config-proxy
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-07-19 14:25:25 +0200
committerHarald Musum <musum@yahoo-inc.com>2017-07-19 14:25:25 +0200
commit50b976c9de81ffa6b4708cae52522427af64c499 (patch)
treeb64380a7c7511e7519cac571aa7b0697bb879042 /config-proxy
parentff06432f7004264db920d955160ad32f911bbe96 (diff)
Name threads in thread pool
Diffstat (limited to 'config-proxy')
-rw-r--r--config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
index 4331d456f8e..b07d1ec681e 100644
--- a/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
+++ b/config-proxy/src/main/java/com/yahoo/vespa/config/proxy/RpcConfigSourceClient.java
@@ -53,7 +53,7 @@ class RpcConfigSourceClient implements ConfigSourceClient {
this.delayedResponses = delayedResponses;
this.timingValues = timingValues;
checkConfigSources();
- exec = Executors.newCachedThreadPool(new DaemonThreadFactory());
+ exec = Executors.newCachedThreadPool(new DaemonThreadFactory("subscriber-"));
requesterPool = createRequesterPool(configSourceSet, timingValues);
}