### Symfony version(s) affected 4.4. ### Description Looks like https://github.com/symfony/symfony/pull/47533 breaks AMQP authentication (I suppose redis is affected as well) in case password contains _+_ sign. [urldecode](https://www.php.net/manual/en/function.urldecode) documentations says: "Decodes any %## encoding in the given string. **Plus symbols ('+') are decoded to a space character.**" Also I suppose that password may have any of _%##_ characters. ### How to reproduce Set + sign as part of password and it will be replaced with space. ### Possible Solution Remove urldecode at least from password option ### Additional Context _No response_