jedcunningham commented on code in PR #47371:
URL: https://github.com/apache/airflow/pull/47371#discussion_r1994880338


##########
airflow/cli/commands/remote_commands/config_command.py:
##########
@@ -546,6 +560,9 @@ def lint_config(args) -> None:
         ):
             lint_issues.append(configuration.message)
 
+        if not args.skip_problematic_default_checks:
+            
conf.handle_incompatible_airflow2_defaults(upgrade=args.upgrade_problematic_defaults)
+

Review Comment:
   It is unfortunate that this is what you get:
   
   ```
   $ airflow config lint
   /Users/jedc/github/airflow/airflow/configuration.py:440 FutureWarning: 
[core] dag_ignore_file_syntax: The default value changed from 'regexp' in 
Airflow 2.x to 'glob' in Airflow 3.0. Auto-upgraded from 'regexp' to 'glob'.
   No issues found in your airflow.cfg. It is ready for Airflow 3!
   ```
   
   The warning is from `configuration.py`, where it got auto-upgraded.



-- 
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]

Reply via email to