File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ def connect(*,
2525 lifecycle_handler : Optional [LifecycleHandler ]= None ,
2626 timeout : float = 10.0 ) -> GreengrassCoreIPCClient :
2727 """
28- Creates an IPC client and connects to the GreengrassCoreIPC service.
28+ Creates an IPC client and connects to the GreengrassCoreIPC service. When finished with the client,
29+ you must call close() to free the client's native resources.
2930
3031 Args:
3132 ipc_socket: Path to the Unix domain socket of Greengrass Nucleus, defaults to
Original file line number Diff line number Diff line change @@ -1340,7 +1340,10 @@ def close(self): # type: (...) -> concurrent.futures.Future[None]
13401340
13411341class GreengrassCoreIPCClient (rpc .Client ):
13421342 """
1343- Client for the GreengrassCoreIPC service.
1343+ Client for the GreengrassCoreIPC service. When finished with the client,
1344+ you must call close() to free the client's native resources.
1345+
1346+
13441347 There is a new V2 client which should be preferred.
13451348 See the GreengrassCoreIPCClientV2 class in the clientv2 subpackage.
13461349
Original file line number Diff line number Diff line change 1414
1515class GreengrassCoreIPCClientV2 :
1616 """
17- V2 client for the GreengrassCoreIPC service.
17+ V2 client for the GreengrassCoreIPC service. When finished with the client,
18+ you must call close() to free the client's native resources.
1819
1920 Args:
2021 client: Connection that this client will use. If you do not provide one, it will be made automatically.
You can’t perform that action at this time.
0 commit comments