We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1285d4 commit 99048e4Copy full SHA for 99048e4
aiormq/connection.py
@@ -286,7 +286,9 @@ def __init__(
286
if self.url.path == "/" or not self.url.path:
287
self.vhost = "/"
288
else:
289
- self.vhost = self.url.path[1:]
+ quoted_vhost = self.url.path[1:]
290
+ # yarl>=1.9.5 skips unquoting backslashes in path
291
+ self.vhost = quoted_vhost.replace("%2F", "/")
292
293
self.ssl_context = context
294
self.ssl_certs = SSLCerts(
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "aiormq"
3
-version = "6.8.0"
+version = "6.8.1"
4
description = "Pure python AMQP asynchronous client library"
5
authors = ["Dmitry Orlov <me@mosquito.su>"]
6
readme = "README.rst"
0 commit comments