From 52c7e1f35365d5d7085086e55f9829e04d319828 Mon Sep 17 00:00:00 2001 From: Ali Date: Tue, 6 Aug 2024 16:22:47 +0200 Subject: [PATCH] `get_daemon_client(profile_name='some-profile')` is the correct one, not `get_daemon_client(profile='some-profile')` --- docs/source/topics/daemon.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/topics/daemon.rst b/docs/source/topics/daemon.rst index 87cf027f31..9958b331bd 100644 --- a/docs/source/topics/daemon.rst +++ b/docs/source/topics/daemon.rst @@ -41,7 +41,7 @@ It is also possible to explicitly specify a profile: .. code-block:: python - client = get_daemon_client(profile='some-profile') + client = get_daemon_client(profile_name='some-profile') The daemon can be started and stopped through the client: