Skip to content

Commit

Permalink
Merge pull request #86 from nodece/master
Browse files Browse the repository at this point in the history
Fix buildRoleLinks method
  • Loading branch information
hsluoyz authored Aug 24, 2019
2 parents 4a99329 + acff4ba commit ce5082c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ export class Model {
if (!astMap) {
return;
}
astMap.forEach(async value => {
for (const value of astMap.values()) {
await value.buildRoleLinks(rm);
});
}
}

// clearPolicy clears all current policy.
Expand Down

0 comments on commit ce5082c

Please sign in to comment.