View att 1

Fix

33

fx

Final fix

fix

Test
This commit is contained in:
2024-04-10 18:11:04 +02:00
committed by migatu
parent 239c38c53e
commit c17bbc5694
2 changed files with 13 additions and 6 deletions
+3 -3
View File
@@ -54,16 +54,16 @@ def scan_queue(_logger):
def scan_incoming(_logger):
while True:
try:
app.logger.info("DATA FOUND")
answer = incoming_q.get(block=False)
_logger.info("DATA FOUND")
for record in awaiting_q:
if record.uuid in answer.keys():
record.stop = True
record.entries = answer[record.uuid]
IN_COMM_Q.put(request)
IN_COMM_Q.put(record)
except Empty:
time.sleep(1)
break
def comm_subroutine(logger):
#logger.setLevel(logging.DEBUG)