Skip to content

Commit

Permalink
do not throw error on failed azureidir role
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Nov 6, 2024
1 parent 66cf2a9 commit f9fcd71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/admin/admin.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ export class AdminService {
return res.data;
})
.catch((err) => {
console.log(err);
throw new Error('Failed to add azureidir ticdi_admin role');
console.log('Error: ' + err?.data?.message);
// throw new Error('Failed to add azureidir ticdi_admin role');
});
} catch (err) {
console.log(err);
Expand Down

0 comments on commit f9fcd71

Please sign in to comment.