You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
connection: reintroduce parse_url as a function in valkey.connection
PR #29 moved a `parse_url` function into one unified implementation.
However, it has also removed `parse_url` from `valkey.connection` and
`valkey.asyncio.connection` which means that one can't call
`valkey.connection.parse_url` anymore and instead has to call
`valkey._parsers.parse_url` which is considered to be a private API
call.
This commit fixes that by reintroducing the `parse_url` function in both
`valkey.connection` and `valkey.asyncio.connection` by simply forwarding
the call to `valkey._parsers.parse_url`.
Signed-off-by: Mikhail Koviazin <mikhail.koviazin@aiven.io>
0 commit comments