Skip to content

Commit 15d292a

Browse files
author
Vikas Agarwal
committed
Fixing URL creation for identity api endpoint
1 parent 3e24201 commit 15d292a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ _.assignIn(util, {
326326
const token = yield this.getSystemUserToken(logger);
327327
console.log('token', token);
328328
const httpClient = this.getHttpClient({ id: requestId, log: logger });
329-
console.log(`${config.identityServiceEndpoint}/roles`);
330-
return httpClient.get(`${config.identityServiceEndpoint}/roles`, {
329+
console.log(`${config.identityServiceEndpoint}roles`);
330+
return httpClient.get(`${config.identityServiceEndpoint}roles`, {
331331
params: {
332332
filter: `subjectID=${userId}`,
333333
},

0 commit comments

Comments
 (0)