We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c98018 commit 8627c53Copy full SHA for 8627c53
packages/trigger-sdk/src/v3/wait.ts
@@ -372,7 +372,9 @@ export class WaitpointTimeoutError extends Error {
372
const DURATION_WAIT_CHARGE_THRESHOLD_MS = 5000;
373
374
function printWaitBelowThreshold() {
375
- console.warn(`Waits of ${DURATION_WAIT_CHARGE_THRESHOLD_MS / 1000}s or less are charged.`);
+ console.warn(
376
+ `Waits of ${DURATION_WAIT_CHARGE_THRESHOLD_MS / 1000}s or less count towards compute usage.`
377
+ );
378
}
379
380
export const wait = {
0 commit comments