Skip to content

Commit

Permalink
fix: offset for number of generations remaining
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Nov 6, 2023
1 parent 71e1272 commit bcb7e42
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tasks/sync-audit-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ const syncOrganizationAudit = async (organization) => {
logger.info(' ');
logger.info(`Syncing Registry: ${_.get(organization, 'name')}`);
logger.info(
`${organization.name} is ${syncRemaining} DataLayer generations away from being fully synced.`,
`${organization.name} is ${
syncRemaining + 1
} DataLayer generations away from being fully synced.`,
);

if (!CONFIG.USE_SIMULATOR) {
Expand Down

0 comments on commit bcb7e42

Please sign in to comment.