kaxil commented on a change in pull request #12091:
URL: https://github.com/apache/airflow/pull/12091#discussion_r517413882
##########
File path: airflow/configuration.py
##########
@@ -229,21 +225,27 @@ def _validate_config_dependencies(self):
Validate that config values aren't invalid given other config values
or system-level limitations and requirements.
"""
- if (
- self.get("core", "executor") not in ('DebugExecutor',
'SequentialExecutor') and
- "sqlite" in self.get('core', 'sql_alchemy_conn')):
+ is_executor_without_sqlie_support = self.get("core", "executor") not
in (
Review comment:
```suggestion
is_executor_without_sqlite_support = self.get("core", "executor")
not in (
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]