Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ReplyListener on standalone rpc with custom publisher_options #718

Merged
merged 2 commits into from Sep 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion nameko/standalone/rpc.py
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
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