Skip to content

Commit

Permalink
fix(user): ensure proper revoke method result
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrishajev committed Jan 2, 2025
1 parent acfbf53 commit 8e65fc2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class ManagedUserWalletService {
}

if (!messages.length) {
return;
return revokeSummary;
}

if (!options?.dryRun) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ export class StaleAnonymousUsersCleanerService {
}
summary.inc("usersDroppedCount", userIdsToRemove.length);
}
this.logger.debug({ event: "STALE_ANONYMOUS_USERS_CLEANUP", userIds: userIdsToRemove, summary: summary.summarize(), dryRun: options.dryRun });
}
);

this.logger.debug({ event: "STALE_ANONYMOUS_USERS_CLEANUP", summary: summary.summarize(), dryRun: options.dryRun });
}
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8e65fc2

Please sign in to comment.