SIENTIAPDE-1318

Update app.py to add a comment for clarity in the main loop condition
This commit is contained in:
vitor-aignosi
2025-10-17 16:17:41 -03:00
parent 4c3289647b
commit fe9fce0ba6

View File

@@ -48,7 +48,7 @@ async def main():
exit_signal.set() exit_signal.set()
ingestor.logger.info('Ingestor prepared. Starting main loop.') ingestor.logger.info('Ingestor prepared. Starting main loop.')
while not exit_signal.is_set(): while not exit_signal.is_set(): # NOSONAR
start_time = time() # Start loop timer start_time = time() # Start loop timer
try: try:
await ingestor.loop() await ingestor.loop()