File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cli-v3/src/workers/prod Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1235,7 +1235,7 @@ class ProdWorker {
1235
1235
try {
1236
1236
await backoff . wait ( attempt + 1 ) ;
1237
1237
1238
- await this . #waitForTaskHandlerFactory( "replay" ) ( message ) ;
1238
+ await this . #waitForTaskHandlerFactory( "replay" ) ( message , idempotencyKey ) ;
1239
1239
} catch ( error ) {
1240
1240
if ( error instanceof ExponentialBackoff . RetryLimitExceeded ) {
1241
1241
logger . error ( "wait for task replay retry limit exceeded" , { error } ) ;
@@ -1278,7 +1278,7 @@ class ProdWorker {
1278
1278
try {
1279
1279
await backoff . wait ( attempt + 1 ) ;
1280
1280
1281
- await this . #waitForBatchHandlerFactory( "replay" ) ( message ) ;
1281
+ await this . #waitForBatchHandlerFactory( "replay" ) ( message , idempotencyKey ) ;
1282
1282
} catch ( error ) {
1283
1283
if ( error instanceof ExponentialBackoff . RetryLimitExceeded ) {
1284
1284
logger . error ( "wait for batch replay retry limit exceeded" , { error } ) ;
You can’t perform that action at this time.
0 commit comments