Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
## Bug Fixes

* Fix that `dispatch-cli stream` would try to print an event as dispatch, causing an exception.
* Fix that `stream()` would not reconnect and just closes the channel upon disconnection.
2 changes: 1 addition & 1 deletion src/frequenz/client/dispatch/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def _get_stream(
),
),
transform=DispatchEvent.from_protobuf,
retry_strategy=LinearBackoff(interval=1, limit=0),
retry_strategy=LinearBackoff(interval=1, limit=None),
)
self._streams[microgrid_id] = broadcaster

Expand Down
Loading