mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-17 15:22:10 +00:00
View att 1
Fix 33 fx Final fix fix Test
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user