FlowRuleManager: properly name thread pool
Change-Id: I4a804c5b7eca9f746746773e36fba10e5d920811
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -103,7 +103,7 @@ public class FlowRuleManager | ... | @@ -103,7 +103,7 @@ public class FlowRuleManager |
103 | 103 | ||
104 | @Activate | 104 | @Activate |
105 | public void activate() { | 105 | public void activate() { |
106 | - futureService = Executors.newCachedThreadPool(namedThreads("provider-future-listeners")); | 106 | + futureService = Executors.newCachedThreadPool(namedThreads("provider-future-listeners-%d")); |
107 | store.setDelegate(delegate); | 107 | store.setDelegate(delegate); |
108 | eventDispatcher.addSink(FlowRuleEvent.class, listenerRegistry); | 108 | eventDispatcher.addSink(FlowRuleEvent.class, listenerRegistry); |
109 | log.info("Started"); | 109 | log.info("Started"); | ... | ... |
-
Please register or login to post a comment