Skip to content

Commit

Permalink
fix: add url option to _connection_args (#739)
Browse files Browse the repository at this point in the history
* docs: fix GH README

* fix #737
  • Loading branch information
Lancetnik authored Sep 25, 2023
1 parent b8f63bc commit 91c7787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion faststream/__about__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Simple and fast framework to create message brokers based microservices"""
__version__ = "0.1.2"
__version__ = "0.1.3"


INSTALL_YAML = """
Expand Down
2 changes: 1 addition & 1 deletion faststream/broker/core/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def __init__(
self.middlewares = [CriticalLogMiddleware(logger), *midd_args]
self.dependencies = dependencies

self._connection_args = args
self._connection_args = (url, *args)
self._connection_kwargs = kwargs

self._global_parser = parser
Expand Down

0 comments on commit 91c7787

Please sign in to comment.