From 1da59b4b4e764f9bc22038e5c203328160f30d14 Mon Sep 17 00:00:00 2001 From: Jericho Tolentino <68654047+jericht@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:11:18 -0500 Subject: [PATCH] fix typo Signed-off-by: Jericho Tolentino <68654047+jericht@users.noreply.github.com> --- src/deadline_worker_agent/installer/win_installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deadline_worker_agent/installer/win_installer.py b/src/deadline_worker_agent/installer/win_installer.py index 7478d514..ffc5af00 100644 --- a/src/deadline_worker_agent/installer/win_installer.py +++ b/src/deadline_worker_agent/installer/win_installer.py @@ -414,9 +414,9 @@ def update_deadline_client_config( deadline_client_config_path = deadline.client.config.config_file.CONFIG_FILE_PATH if not deadline_client_config_path.startswith("~"): raise InstallerFailedException( - f"Cannot opt out of telemtry: Expected Deadline client config file path to start with a tilde (~), but got: {deadline_client_config_path}\n" + f"Cannot opt out of telemetry: Expected Deadline client config file path to start with a tilde (~), but got: {deadline_client_config_path}\n" f"This is because the Deadline client program (version {deadline.client.version}) is not compatible with this version of the Worker agent installer\n" - f"To opt out of telemtry, please use a compatible version of the Deadline client program or run the following command as the worker user:\n\n" + f"To opt out of telemetry, please use a compatible version of the Deadline client program or run the following command as the worker user:\n\n" "deadline config set telemetry.opt_out true\n" ) user_deadline_client_config_path = f"~{user}" + deadline_client_config_path.removeprefix("~")