Skip to content

Commit

Permalink
chore(client-utils): Don't log reusePromise in retryUntilCondition
Browse files Browse the repository at this point in the history
Ref fd9394b

Unlike maxRetries and retryIntervalMs and message, it is independent of
expected timing and result output, and therefore just noise in CI logs.
  • Loading branch information
gibson042 committed Nov 19, 2024
1 parent 00dd156 commit d58dcce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client-utils/src/sync-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const retryUntilCondition = async (
setTimeout,
},
) => {
console.log({ maxRetries, retryIntervalMs, reusePromise, message });
console.log({ maxRetries, retryIntervalMs, message });

await null; // separate sync prologue

Expand Down

0 comments on commit d58dcce

Please sign in to comment.