From a33086d5bdab7e401842164fbd6768de3591da8c Mon Sep 17 00:00:00 2001 From: Morgan Epp <60796713+epmog@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:30:28 -0500 Subject: [PATCH] fix: remove deprecated .aws/sso/cache watcher Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com> --- src/deadline/client/ui/deadline_authentication_status.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/deadline/client/ui/deadline_authentication_status.py b/src/deadline/client/ui/deadline_authentication_status.py index 8f7904b0..a0bfa2fd 100644 --- a/src/deadline/client/ui/deadline_authentication_status.py +++ b/src/deadline/client/ui/deadline_authentication_status.py @@ -79,13 +79,11 @@ def __init__(self, parent=None) -> None: self.config = ConfigParser() self.config.read_dict(config_file.read_config()) - # Watch the ~/.aws path for any changes to config or credentials, - # the ~/.aws/sso/cache to capture "aws sso login/logout", and + # Watch the ~/.aws path for any changes to config or credentials, and # the ~/.deadline path for any changes to the AWS Deadline Cloud config. self.aws_creds_file_watcher = QFileSystemWatcher() self.aws_creds_paths = [ os.path.expanduser(os.path.join("~", ".aws")), - os.path.expanduser(os.path.join("~", ".aws", "sso", "cache")), ] self.deadline_config_paths = [ os.path.expanduser(os.path.join("~", ".deadline")),