Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't treat warning message as rich formatting codes. #12283

Merged
merged 1 commit into from
Nov 11, 2020

Commits on Nov 11, 2020

  1. Don't treat warning message as rich formatting codes.

    Before this commit:
    
    ```
      ...airflow/configuration.py:328 DeprecationWarning: The remote_logging option in  has been moved to the remote_logging option in  - the old setting has been used, but please update your config.
    ```
    
    After this commit:
    
    ```
      ...airflow/configuration.py:328 DeprecationWarning: The remote_logging option in [core] has been moved to the remote_logging option in [logging] - the old setting has been used, but please update your config.
    ```
    
    As this file is _always_ imported by anything in airflow, but warnings are quite rare I have
    also delayed the import.
    ashb committed Nov 11, 2020
    Configuration menu
    Copy the full SHA
    381b58d View commit details
    Browse the repository at this point in the history