Skip to content

Commit

Permalink
fix: remove deprecated .aws/sso/cache watcher
Browse files Browse the repository at this point in the history
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
  • Loading branch information
epmog committed Apr 29, 2024
1 parent a3f924e commit a33086d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/deadline/client/ui/deadline_authentication_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")),
Expand Down

0 comments on commit a33086d

Please sign in to comment.