From 3341ac467cc08ac95f937945c7502ac4a019d805 Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Wed, 17 Aug 2016 15:38:01 +0200 Subject: Make Restconf thread pools configurable Change-Id: Ie03a1fde5181cfd8457e36d67afc2cc0c69c1e1d Signed-off-by: Maros Marsalek --- .../infra/distro/netconf/NetconfSshServerProvider.groovy | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'infra/minimal-distribution/src/main/java/io/fd/honeycomb/infra/distro/netconf/NetconfSshServerProvider.groovy') diff --git a/infra/minimal-distribution/src/main/java/io/fd/honeycomb/infra/distro/netconf/NetconfSshServerProvider.groovy b/infra/minimal-distribution/src/main/java/io/fd/honeycomb/infra/distro/netconf/NetconfSshServerProvider.groovy index bce4f261a..8b1b5bec2 100644 --- a/infra/minimal-distribution/src/main/java/io/fd/honeycomb/infra/distro/netconf/NetconfSshServerProvider.groovy +++ b/infra/minimal-distribution/src/main/java/io/fd/honeycomb/infra/distro/netconf/NetconfSshServerProvider.groovy @@ -16,6 +16,7 @@ package io.fd.honeycomb.infra.distro.netconf +import com.google.common.util.concurrent.ThreadFactoryBuilder import com.google.inject.Inject import groovy.transform.ToString import groovy.util.logging.Slf4j @@ -48,12 +49,13 @@ class NetconfSshServerProvider extends ProviderTrait { NioEventLoopGroup nettyThreadgroup // TODO merge with other executors .. one of the brokers creates also 2 internal executors - private ScheduledExecutorService pool = Executors.newScheduledThreadPool(1) + private ScheduledExecutorService pool = + Executors.newScheduledThreadPool(1, new ThreadFactoryBuilder().setNameFormat("netconf-ssh-%d").build()) @Override def create() { - def name = InetAddress.getByName(cfgAttributes.netconfSshBindingAddress) - def bindingAddress = new InetSocketAddress(name, cfgAttributes.netconfSshBindingPort) + def name = InetAddress.getByName(cfgAttributes.netconfSshBindingAddress.get()) + def bindingAddress = new InetSocketAddress(name, cfgAttributes.netconfSshBindingPort.get()) def localAddress = new LocalAddress(cfgAttributes.netconfSshBindingPort.toString()) def localServer = dispatcher.createLocalServer(localAddress) -- cgit 1.2.3-korg