Skip to content

Commit 2170894

Browse files
committed
fix(sdk): pass requestOptions in correct positional slot of triggerTask
1 parent cb7c6b4 commit 2170894

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/trigger-sdk/src/v3/shared.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2585,7 +2585,8 @@ async function triggerAndSubscribe_internal<TIdentifier extends string, TPayload
25852585
debounce: options?.debounce,
25862586
},
25872587
},
2588-
requestOptions ?? {}
2588+
{},
2589+
requestOptions
25892590
);
25902591

25912592
// Set attributes after trigger so the dashboard can link to the child run

0 commit comments

Comments
 (0)