You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran the cleanup command with this script, as cloned from the main branch, and ran into the error in my title. It looks like the QuickSight.delete_dataset function pops the dataset from the same dictionary that the Cid class is iterating over. Locally, I changed for dataset in self.qs._datasets.values() to for dataset in list(self.qs._datasets.values()), and this resolved the error.
I ran the cleanup command with this script, as cloned from the main branch, and ran into the error in my title. It looks like the
QuickSight.delete_dataset
function pops the dataset from the same dictionary that the Cid class is iterating over. Locally, I changedfor dataset in self.qs._datasets.values()
tofor dataset in list(self.qs._datasets.values())
, and this resolved the error.The text was updated successfully, but these errors were encountered: