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 b4a1664 commit b5dc085Copy full SHA for b5dc085
1 file changed
src/cli/operations/dev/web-ui/handlers/invocations.ts
@@ -472,6 +472,7 @@ async function handleDeployedInvocation(
472
sessionId,
473
userId,
474
bearerToken: resolved.bearerToken,
475
+ baggage: resolved.baggage,
476
});
477
}
478
} catch (err) {
@@ -495,6 +496,7 @@ interface DeployedInvokeParams {
495
496
sessionId?: string;
497
userId?: string;
498
bearerToken?: string;
499
+ baggage?: string;
500
501
502
async function handleDeployedHttpInvocation(
@@ -510,6 +512,7 @@ async function handleDeployedHttpInvocation(
510
512
sessionId: params.sessionId,
511
513
userId: params.userId,
514
bearerToken: params.bearerToken,
515
+ baggage: params.baggage,
516
517
518
ctx.setCorsHeaders(res, origin);
0 commit comments