File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/frequenz/client/microgrid Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def __init__(
6767 self ,
6868 grpc_channel : grpc .aio .Channel ,
6969 target : str ,
70- retry_strategy : retry .Strategy = retry . LinearBackoff () ,
70+ retry_strategy : retry .Strategy | None = None ,
7171 ) -> None :
7272 """Initialize the class instance.
7373
@@ -76,7 +76,8 @@ def __init__(
7676 target: server (host:port) to be used for asyncio-supporting gRPC
7777 channel that the client should use to contact the API
7878 retry_strategy: The retry strategy to use to reconnect when the connection
79- to the streaming method is lost.
79+ to the streaming method is lost. By default a linear backoff strategy
80+ is used.
8081 """
8182 self .target = target
8283 """The location (as "host:port") of the microgrid API gRPC server."""
You can’t perform that action at this time.
0 commit comments