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 aeb4a58 commit 0e4a759Copy full SHA for 0e4a759
internal-packages/run-engine/src/engine/systems/waitpointSystem.ts
@@ -334,7 +334,7 @@ export class WaitpointSystem {
334
attempts++;
335
if (attempts >= maxRetries) {
336
throw new Error(
337
- `Failed to create waitpoint tag after ${maxRetries} attempts due to conflicts.`
+ `Failed to create waitpoint after ${maxRetries} attempts due to conflicts.`
338
);
339
}
340
} else {
@@ -343,9 +343,7 @@ export class WaitpointSystem {
343
344
345
346
- throw new Error(
347
348
- );
+ throw new Error(`Failed to create waitpoint after ${maxRetries} attempts due to conflicts.`);
349
350
351
/**
0 commit comments