-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Messenger] Allow password in redis dsn when using sockets #47475
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
[Messenger] Allow password in redis dsn when using sockets #47475
Conversation
Ok @fabpot the AppVeyer failure is confusing me, its a totally different component ... all other tests pass... |
Hey! I think @nesk has recently worked with this code. Maybe they can help review this? Cheers! Carsonbot |
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.
This looks like a new feature to me, that should be for 6.3 I guess.
src/Symfony/Component/Messenger/Bridge/Redis/Transport/Connection.php
Outdated
Show resolved
Hide resolved
src/Symfony/Component/Messenger/Bridge/Redis/Transport/Connection.php
Outdated
Show resolved
Hide resolved
src/Symfony/Component/Messenger/Bridge/Redis/Transport/Connection.php
Outdated
Show resolved
Hide resolved
src/Symfony/Component/Messenger/Bridge/Redis/Transport/Connection.php
Outdated
Show resolved
Hide resolved
src/Symfony/Component/Messenger/Bridge/Redis/Transport/Connection.php
Outdated
Show resolved
Hide resolved
Screwed up rebase. Will retry. |
[Messenger] Allow password in redis dsn when using sockets #48959 |
…kets (PhilETaylor) This PR was squashed before being merged into the 6.3 branch. Discussion ---------- [Messenger] Allow password in redis dsn when using sockets | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | yes | Deprecations? | no | Tickets | Fix #47393 `@Arakmar` | License | MIT | Doc PR | When a messenger async transport is configured with Redis (unix socket with a password), it gives DSN parsing errors. Using a Bunch of copy and pasted code blocks from the Redis cache adapter, this PR fixes the bug that doesn't parse a DSN such as `redis://password@/var/run/redis.sock` Replaces bad rebased #47475 Commits ------- 9af8ccf [Messenger] Allow password in redis dsn when using sockets
When a messenger async transport is configured with Redis (unix socket with a password), it gives DSN parsing errors.
Using a Bunch of copy and pasted code blocks from the Redis cache adapter, this PR fixes the bug that doesn't parse a DSN such as
redis://password@/var/run/redis.sock