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

docs: Explicitly document underlying BMQ_BROKER_URI behavior #4

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/blazingmq/_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ class Session:
received by the session.
on_message: an optional callback to process `Message` objects received
by the session.
broker: TCP address of the broker (default: 'tcp://localhost:30114')
broker: TCP address of the broker (default: 'tcp://localhost:30114').
If the environment variable ``BMQ_BROKER_URI`` is set, its value
will override whatever broker address is passed via this argument.
message_compression_algorithm: the type of compression to apply to messages
being posted via this session object.
timeout: maximum number of seconds to wait for requests on this
Expand Down
Loading