From 21e5627d5828b8a854efc80b5161a20ab0e3c1eb Mon Sep 17 00:00:00 2001 From: Sven Holz Date: Mon, 20 Jun 2022 17:06:18 +0200 Subject: [PATCH] ping timeout added --- Docker_Build/latency_monitor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Docker_Build/latency_monitor.py b/Docker_Build/latency_monitor.py index 0b15516..d905ba2 100644 --- a/Docker_Build/latency_monitor.py +++ b/Docker_Build/latency_monitor.py @@ -137,7 +137,8 @@ def main(): host_location = os.getenv('TARGET_LOCATION', 'unknown') # Create Thread - print("Creating thread for: %s, with interval: %s and location: %s" % (host, host_timeout, host_timer, host_location)) + print("Creating thread for: %s, with timeout: %s, with interval: %s and location: %s" % ( + host, host_timeout, host_timer, host_location)) thread = ThreadPing(MyDB, host, host_timeout, host_timer, host_location) my_threads.append(thread) thread.start()