From 08ff961201cdc98ec6d13195bdd53ab7b71f2777 Mon Sep 17 00:00:00 2001 From: Mateusz779 Date: Fri, 14 Apr 2023 11:49:49 +0200 Subject: [PATCH] - --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index f7ee4f7..6529934 100644 --- a/app.py +++ b/app.py @@ -38,7 +38,9 @@ class PingThread(threading.Thread): def check_allocation_thread_function(): while True: ids = db.get_image_allocation_all() + print(ids) for x in ids: + print(x) ip = db.get_image_allocation_clientip_id(x) ping_thread = PingThread(ip, x) ping_thread.start()