-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
duplicateIssue that is duplicatedIssue that is duplicated
Description
Apache Airflow version
2.3.0 (latest released)
What happened
Running a standalone Dag Processor instance with airflow dag-processor throws the following exception:
Standalone DagProcessor is not supported when using sqlite.
What you think should happen instead
The airflow dag-processor should start without an exception in case of Postgres database
How to reproduce
The error is in the following line:
| sql_conn: str = conf.get('core', 'sql_alchemy_conn').lower() |
It should be
sql_conn: str = conf.get('database', 'sql_alchemy_conn').lower() due to the change in the configuration file done in #22284
Operating System
Ubuntu 20.04
Versions of Apache Airflow Providers
No response
Deployment
Virtualenv installation
Deployment details
No response
Anything else
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
duplicateIssue that is duplicatedIssue that is duplicated