Commit 57c2915e657e205d7853ed858eaf7898cbd37203
Merge branch 'master' of github.com:thingsboard/thingsboard
Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -295,7 +295,7 @@ public class ActorSystemContext { |
295 | 295 | @Getter |
296 | 296 | private final AtomicInteger jsInvokeFailuresCount = new AtomicInteger(0); |
297 | 297 | |
298 | - @Scheduled(fixedDelayString = "${js.remote.stats.print_interval_ms}") | |
298 | + @Scheduled(fixedDelayString = "${actors.statistics.js_print_interval_ms}") | |
299 | 299 | public void printStats() { |
300 | 300 | if (statisticsEnabled) { |
301 | 301 | if (jsInvokeRequestsCount.get() > 0 || jsInvokeResponsesCount.get() > 0 || jsInvokeFailuresCount.get() > 0) { | ... | ... |
... | ... | @@ -70,7 +70,7 @@ public abstract class AbstractNashornJsInvokeService extends AbstractJsInvokeSer |
70 | 70 | @Value("${js.local.stats.enabled:false}") |
71 | 71 | private boolean statsEnabled; |
72 | 72 | |
73 | - @Scheduled(fixedDelayString = "${js.remote.stats.print_interval_ms:10000}") | |
73 | + @Scheduled(fixedDelayString = "${js.local.stats.print_interval_ms:10000}") | |
74 | 74 | public void printStats() { |
75 | 75 | if (statsEnabled) { |
76 | 76 | int pushedMsgs = jsPushedMsgs.getAndSet(0); | ... | ... |