Skip to content

Commit e78ccc4

Browse files
committed
Fix: When a stream disconnects, it will not reconnect
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 6efd3d8 commit e78ccc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frequenz/client/dispatch/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def _get_stream(
241241
),
242242
),
243243
transform=DispatchEvent.from_protobuf,
244-
retry_strategy=LinearBackoff(interval=1, limit=0),
244+
retry_strategy=LinearBackoff(interval=1, limit=None),
245245
)
246246
self._streams[microgrid_id] = broadcaster
247247

0 commit comments

Comments
 (0)