Skip to content

Commit

Permalink
fix ReplyListener on standalone rpc with custom publisher_options (#718)
Browse files Browse the repository at this point in the history
* fix ReplyListener on standalone rpc with custom publisher_options

* update to rc10
  • Loading branch information
alfaro28 committed Sep 29, 2021
1 parent 51b2577 commit 0f02249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nameko/standalone/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def __init__(
'ssl', config.get(AMQP_SSL_CONFIG_KEY)
)

self.reply_listener = ReplyListener(queue, timeout=timeout)
self.reply_listener = ReplyListener(queue, timeout=timeout, uri=self.amqp_uri, ssl=self.ssl)

serialization_config = serialization.setup()
self.serializer = publisher_options.pop(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='nameko',
version='v3.0.0-rc9',
version='v3.0.0-rc10',
description='A microservices framework for Python that lets service '
'developers concentrate on application logic and encourages '
'testability.',
Expand Down

0 comments on commit 0f02249

Please sign in to comment.