Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove deprecated .aws/sso/cache watcher #322

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading