Skip to content

Commit a93cdc1

Browse files
authored
Fix proper assignment of Boolean (#648)
1 parent 8a6e886 commit a93cdc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/operator-binary/src/product_logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ for logger_name, logger_config in LOGGING_CONFIG['loggers'].items():
113113
# Do not change the setting of the airflow.task logger because
114114
# otherwise DAGs cannot be loaded anymore.
115115
if logger_name != 'airflow.task':
116-
logger_config['propagate'] == True
116+
logger_config['propagate'] = True
117117
118118
LOGGING_CONFIG.setdefault('formatters', {{}})
119119
LOGGING_CONFIG['formatters']['json'] = {{

0 commit comments

Comments
 (0)