Skip to content

Commit

Permalink
reduce stacktrace noise
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws committed Aug 29, 2023
1 parent 7aacd91 commit 1235f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cid/helpers/quicksight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ def get_dataset_refresh_schedules(self, dataset_id):
except self.client.exceptions.ResourceNotFoundException as exc:
raise CidError(f'DataSet {dataset_id} does not exist') from exc
except self.client.exceptions.AccessDeniedException as exc:
raise CidError(f'AccessDenied when reading refresh schedule for {dataset_id}') from exc
raise CidError(f'AccessDenied') from exc
except Exception as exc:
raise CidError(f'Unable to list refresh schedules for dataset {dataset_id}: {str(exc)}') from exc

Expand Down

0 comments on commit 1235f32

Please sign in to comment.