We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e23980 commit 86d1181Copy full SHA for 86d1181
docker/start.py
@@ -444,6 +444,7 @@ def start_rest_thread(logger):
444
445
446
def start_timeout_thread(logger, sync_period):
447
+ logger.debug("Starting timeout thread")
448
thread = threading.Thread(target=timeout_loop,
449
name="Timeout thread",
450
args=(logger, sync_period), daemon=True)
@@ -546,7 +547,8 @@ def main():
546
547
sync_thread.start()
548
549
start_rest_thread(logger)
- start_timeout_thread(logger, sync_period)
550
+ if sync_period > 0:
551
+ start_timeout_thread(logger, sync_period)
552
553
# Start Tomcat last. It will be the foreground process.
554
logger.info("Starting Tomcat")
0 commit comments