Skip to content

Commit

Permalink
Merge pull request #1218 from aladjadj/main
Browse files Browse the repository at this point in the history
fix(catalog-backend-module-okta): wrong error message when user is throw
  • Loading branch information
Xantier authored Jan 9, 2024
2 parents 65005e5 + 208c42f commit d3646b3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,7 @@ export class OktaUserEntityProvider extends OktaEntityProvider {
userResources.push(userEntity);
} catch (e: unknown) {
this.logger.warn(
`failed to add user to group: ${
isError(e) ? e.message : 'unknown error'
}`,
`Failed to add user: ${isError(e) ? e.message : 'unknown error'}`,
);
}
});
Expand Down

0 comments on commit d3646b3

Please sign in to comment.