From eea952727072966681d8b92b4f2e5a826e13d82d Mon Sep 17 00:00:00 2001 From: Maxi Wittich Date: Tue, 24 Jun 2025 11:48:39 +0200 Subject: [PATCH] Fix proper assignment of Boolean --- rust/operator-binary/src/product_logging.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/operator-binary/src/product_logging.rs b/rust/operator-binary/src/product_logging.rs index 8d7e4eea..6bf99883 100644 --- a/rust/operator-binary/src/product_logging.rs +++ b/rust/operator-binary/src/product_logging.rs @@ -113,7 +113,7 @@ for logger_name, logger_config in LOGGING_CONFIG['loggers'].items(): # Do not change the setting of the airflow.task logger because # otherwise DAGs cannot be loaded anymore. if logger_name != 'airflow.task': - logger_config['propagate'] == True + logger_config['propagate'] = True LOGGING_CONFIG.setdefault('formatters', {{}}) LOGGING_CONFIG['formatters']['json'] = {{