Skip to content

Commit 0212510

Browse files
committed
Minor catches
1 parent 82d5bb1 commit 0212510

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

js/services/iam.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ async function updateDatatableSecurityIdentityAndComplianceIAM() {
583583
}
584584
return Promise.resolve();
585585
}));
586-
});
586+
}).catch(() => {});
587587

588588
await Promise.all([
589589
sdkcall("IAM", "listGroups", {
@@ -715,7 +715,7 @@ async function updateDatatableSecurityIdentityAndComplianceIAM() {
715715
});
716716
}));
717717
});
718-
}),
718+
}).catch(() => {}),
719719
sdkcall("IAM", "listRoles", {
720720
// no params
721721
}, true).then(async (data) => {
@@ -792,7 +792,7 @@ async function updateDatatableSecurityIdentityAndComplianceIAM() {
792792
}));
793793
});
794794
}));
795-
})
795+
}).catch(() => {})
796796
]);
797797

798798
await sdkcall("IAM", "listInstanceProfiles", {
@@ -811,7 +811,7 @@ async function updateDatatableSecurityIdentityAndComplianceIAM() {
811811
path: instanceProfile.Path
812812
}]);
813813
});
814-
});
814+
}).catch(() => {});
815815

816816
await sdkcall("AccessAnalyzer", "listAnalyzers", {
817817
type: 'ACCOUNT'

0 commit comments

Comments
 (0)