mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: log unerlying DB error in set user root role (#5324)
This commit is contained in:
parent
5782efa6c0
commit
ce7644e0af
@ -347,9 +347,9 @@ export class AccessService {
|
|||||||
DEFAULT_PROJECT,
|
DEFAULT_PROJECT,
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw new Error(
|
const message = `Could not add role=${newRootRole.name} to userId=${userId}`;
|
||||||
`Could not add role=${newRootRole.name} to userId=${userId}`,
|
this.logger.error(message, error);
|
||||||
);
|
throw new Error(message);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new BadDataError(`Could not find rootRole=${role}`);
|
throw new BadDataError(`Could not find rootRole=${role}`);
|
||||||
|
Loading…
Reference in New Issue
Block a user