zachliu commented on PR #58115: URL: https://github.com/apache/airflow/pull/58115#issuecomment-3524134452
off the top of me head, i can change this line https://github.com/apache/airflow/blob/b32603f50668391c2bba55579336023fab6dbf0f/airflow-core/src/airflow/configuration.py#L584 into ```python if isinstance(default_value, str): self.set(section_to_write, option, default_value) value = self.get(section_to_write, option, raw=True) else: value = self.get(section_to_write, option, fallback=default_value, raw=True) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
