From fe9fce0ba647adc99aa7ed09be75b07b76a158ed Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 17 Oct 2025 16:17:41 -0300 Subject: [PATCH] SIENTIAPDE-1318 Update app.py to add a comment for clarity in the main loop condition --- ingestor/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestor/app.py b/ingestor/app.py index 54231eb..f0bf13e 100644 --- a/ingestor/app.py +++ b/ingestor/app.py @@ -48,7 +48,7 @@ async def main(): exit_signal.set() 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 try: await ingestor.loop()