-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Include rediss to the list of supported URL schemes #31028
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
Conversation
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contribution Guide (https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst)
|
|
Tagging @ephraimbuddy @pierrejeambrun @josh-fell |
jedcunningham
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some other checks against redis:// in that same file. Can you do the same for the rest of them?
vlazuka
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changes are added
|
Tagging @uranusjr @josh-fell @jedcunningham @rozza @hussein-awala @potiuk to make it reviewed faster |
pankajkoti
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you get a chance to test this E2E with both redis and rediss? If yes, will it possible to share some logs/screenshot of the working solution.
|
Referring to this Issue I created before |
uranusjr
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine as far as I can tell
hussein-awala
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Can you install pre-commit to fix static checks (doc) and fix the failed tests? |
|
It seems I can't merge without @jedcunningham because you requested changes and you need to review them know |
|
Actually the PR is blocked by the failed CI, you need to fix the static checks as I explained before (doc) |
| result_backend = f'db+{conf.get("database", "SQL_ALCHEMY_CONN")}' | ||
| result_backend = "db+{}".format(conf.get("database", "SQL_ALCHEMY_CONN")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change this?
|
Hello @hussein-awala, Thank you for pointing at this. CI allows to merge the pr though (hm). TBH I don't understand why we create a new variable @uranusjr take a look, please Thanks |
|
I added some changes, this should be enough to convince Mypy. |
Hello, it used in the situation that you have sentinel and redis server both password-authed. |
|
When is this going to be merged and released? |
|
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
--------- Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> (cherry picked from commit 471fdac)




This pull request fixes: #31027