Commit 3bb00b780ecd112880d2fea0d0b313f63f2303d0
Committed by
Andrew Shvayka
1 parent
62ec9214
Lwm2m: back: fix bug test docker
Showing
1 changed file
with
0 additions
and
1 deletions
... | ... | @@ -121,7 +121,6 @@ public class LwM2MTransportServiceImpl implements LwM2MTransportService { |
121 | 121 | this.context.getScheduler().scheduleAtFixedRate(this::checkInactivityAndReportActivity, new Random().nextInt((int) context.getCtxServer().getSessionReportTimeout()), context.getCtxServer().getSessionReportTimeout(), TimeUnit.MILLISECONDS); |
122 | 122 | this.executorRegistered = Executors.newFixedThreadPool(this.context.getCtxServer().getRegisteredPoolSize(), |
123 | 123 | new NamedThreadFactory(String.format("LwM2M %s channel registered", SERVICE_CHANNEL))); |
124 | -// this.executorRegistered = Executors.newWorkStealingPool(this.context.getCtxServer().getRegisteredPoolSize()); | |
125 | 124 | this.executorUpdateRegistered = Executors.newFixedThreadPool(this.context.getCtxServer().getUpdateRegisteredPoolSize(), |
126 | 125 | new NamedThreadFactory(String.format("LwM2M %s channel update registered", SERVICE_CHANNEL))); |
127 | 126 | this.executorUnRegistered = Executors.newFixedThreadPool(this.context.getCtxServer().getUnRegisteredPoolSize(), | ... | ... |