Skip to content

[repro] main + WORKFLOW_H2_MULTIPLEX=0 - #3242

Closed
pranaygp wants to merge 2 commits into
mainfrom
pgp/repro-h2-multiplex-off
Closed

[repro] main + WORKFLOW_H2_MULTIPLEX=0#3242
pranaygp wants to merge 2 commits into
mainfrom
pgp/repro-h2-multiplex-off

Conversation

@pranaygp

@pranaygp pranaygp commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

Not for merge. Disposable isolation experiment for the hook-storm regression.

What this branch is

Current main (32ac8e73f) with exactly one behavioral change: the workbench app the storm runs against sets WORKFLOW_H2_MULTIPLEX=0 in its vercel.json env block. That is the documented kill switch for #3190 ([world-vercel] Make HTTP/2 actually multiplex on the events path). world-vercel reads the variable lazily at runtime inside createEventsDispatcher(), so a deployment-level env var reaches it — no build-time inlining is involved.

Nothing is reverted and no package source is touched, so a storm here measures events-path multiplexing and nothing else.

Why

The hook-storm corruption rate steps from ~115–145 / 600 to saturation somewhere in e8934ade9..b12f248b6, and it does not come from #3196 — two independent branches flipped on the same main merge (evidence in #3196). Fresh measurement on current main, same night, preview environment: hook-storm 195 corrupted / 0 completed of 200, hook-sleep control 50/50 clean (run 30588748635).

#3190 is the prime suspect on mechanism. Before it, undici capped the events H2 agent at one in-flight request per connection — the Client constructor coerces pipelining, so H2's defaultPipelining: Infinity was unreachable (nodejs/undici#4143). After it, up to 100 streams multiplex per connection. That is a step change in how concurrently one run's event reads and writes hit the wire, which is precisely the input distribution every hydration-latency race in the replay engine is sensitive to.

Registered prediction (written before the run)

  • If [world-vercel] Make HTTP/2 actually multiplex on the events path #3190 owns the regression, hook-storm returns to roughly 100–145 per 600, i.e. ~33–48 corrupted of 200.
  • If it does not, hook-storm stays at saturation, ~195 of 200.
  • Anything in between is not a clean verdict, and it gets reported as "not a clean verdict" rather than rounded toward whichever side is convenient.

The comparison is against run 30588748635 — same night, same preview environment, same 200/50 shape. Not against the older 600-attempt baselines, which differ in both size and day.

The probe route

GET /api/e2e-h2-flag echoes the runtime value of the flag. A flag that silently failed to reach the deployed function would produce a "no change" result indistinguishable from "multiplexing is not the cause", so the flag is verified on the deployment before the storm is dispatched.

How it is being run

Dispatched as a hook-first short run (step_storm_attempts=0, hook_storm_attempts=200, attempts=50) rather than by label, so the answer lands in ~20 minutes instead of holding runners for a two-hour full storm. Label this PR event-log-race-repro if a full storm is ever wanted here.

Runs

  • 30589591922 — the measurement, on 5cc453ae7.
  • 30589448906 — cancelled deliberately. It was dispatched on 2bb0858bb, before the instrumentation fallback existed, so a null result from it could not have been distinguished from the flag never arriving.

Isolation experiment for the hook-storm regression that arrives with main
somewhere in e8934ad..b12f248. #3190 turned the events-path H2 agent
from one in-flight request per connection into 100; this branch is current
main (32ac8e7) with nothing changed but that feature's documented kill
switch, so a storm here measures multiplexing and nothing else.

The probe route exists because a flag that never reached the deployed
function's runtime environment would look exactly like a flag that made no
difference.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Signed-off-by: Pranay Prakash <pranay.gp@gmail.com>
@pranaygp
pranaygp requested a review from ijjk as a code owner July 30, 2026 23:06
Copilot AI review requested due to automatic review settings July 30, 2026 23:06
@pranaygp
pranaygp requested a review from a team as a code owner July 30, 2026 23:06
@vercel
vercel Bot temporarily deployed to Preview – workflow-docs July 30, 2026 23:06 Inactive
@vercel

vercel Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
example-nextjs-workflow-turbopack Ready Ready Preview Jul 30, 2026 11:12pm
example-nextjs-workflow-webpack Ready Ready Preview Jul 30, 2026 11:12pm
example-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-astro-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-express-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-fastify-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-hono-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-nestjs-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-nitro-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-nuxt-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-sveltekit-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-tanstack-start-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workbench-vite-workflow Ready Ready Preview Jul 30, 2026 11:12pm
workflow-swc-playground Ready Ready Preview Jul 30, 2026 11:12pm
workflow-tarballs Ready Ready Preview Jul 30, 2026 11:12pm
workflow-web Ready Ready Preview Jul 30, 2026 11:12pm
1 Skipped Deployment
Project Deployment Actions Updated (UTC)
workflow-docs Skipped Skipped Jul 30, 2026 11:12pm

@changeset-bot

changeset-bot Bot commented Jul 30, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 5cc453a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions

github-actions Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

❌ Failed E2E Tests

▲ Vercel Production (365 failed)

astro (33 failed):

  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

example (25 failed):

  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

express (31 failed):

  • AbortController abortTimeoutWorkflow: timeout cancels long-running step
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

fastify (36 failed):

  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_41KYTNA1JK0GP8B8SYVYT39SRP | 🔍 observability
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

hono (34 failed):

  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_41KYTNA1JK0GP8B8SYVYT39SRP | 🔍 observability
  • AbortController abortTimeoutWorkflow: timeout cancels long-running step
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

nextjs-turbopack (48 failed):

  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_41KYTN6WYG0GN0FCSNKPRCRVC6 | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_41KYTN72Y80GR79NE6M8S4R8PW | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_41KYTN78Q60GTCKTM0XYPT454V | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_41KYTN7ESX0GXRBV1HQPGP4ZA6 | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_41KYTN7MNY0GMAQS82FKYWY2G0 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_41KYTN7TJ30GJ1ECCJR4EAPGZW | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_41KYTN80CZ0GHD42B7ECRTYTMZ | 🔍 observability
  • errorSubclassRoundTripWorkflow - first-class Error subclasses survive every serialization boundary | wrun_41KYTN8G6G0GVDE07CP5HC3A8Q | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_41KYTN8JM20GNJM8W5GX00V2F0 | 🔍 observability
  • cancelRun - cancelling a running workflow | wrun_41KYTN8RPT0GXETCKBVHQTRZ7C | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_41KYTN8XSB0GXJRFKTJTX974FD | 🔍 observability
  • pages router addTenWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • plainModuleDoneHook resumed via plain API route (o2flow shape) | wrun_41KYTNAT280GWJ698M8PS4N35P | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_41KYTN95WX0GHPQG44YB8KH41F | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_41KYTNA1JK0GP8B8SYVYT39SRP | 🔍 observability
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run

nextjs-webpack (40 failed):

  • cancelRun via CLI - cancelling a running workflow | wrun_41KYTN8XSB0GXJRFKTJTX974FD | 🔍 observability
  • pages router addTenWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_41KYTN95WX0GHPQG44YB8KH41F | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_41KYTN9GA10GPRXGDW37HHJD2Q | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ | 🔍 observability
  • AbortController abortTimeoutWorkflow: timeout cancels long-running step
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

nitro (24 failed):

  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run

nuxt (28 failed):

  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

sveltekit (36 failed):

  • cancelRun via CLI - cancelling a running workflow | wrun_41KYTN8XSB0GXJRFKTJTX974FD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_41KYTN9GA10GPRXGDW37HHJD2Q | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ | 🔍 observability
  • AbortController abortTimeoutWorkflow: timeout cancels long-running step
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

vite (30 failed):

  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-hook-first]: addEventListener → hook.then → resumeHook → abort()
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ | 🔍 observability
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D | 🔍 observability
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH | 🔍 observability
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP | 🔍 observability
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24 | 🔍 observability
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit
📋 Other (72 failed)

e2e-vercel-prod-nest (35 failed):

  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_41KYTNA1JK0GP8B8SYVYT39SRP
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortReasonWorkflow: abort reason preserved across boundaries
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortAnyInStepWorkflow: AbortSignal.any inside a step composes deserialized signals
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortThrowIfAbortedWorkflow: throwIfAborted causes FatalError, no retries
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortDeterministicBranchWorkflow: if-check takes same path on first-run and replay
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

e2e-vercel-prod-tanstack-start (37 failed):

  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_41KYTN9R1H0GWQS5Q59P7QGKNQ
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_41KYTNA1JK0GP8B8SYVYT39SRP
  • AbortController abortTimeoutWorkflow: timeout cancels long-running step
  • AbortController abortParallelWorkflow: abort cancels all parallel steps
  • AbortController abortFromStepWorkflow: step abort cancels an in-flight sibling step
  • AbortController abortAlreadyAbortedWorkflow: pre-aborted signal seen by step
  • AbortController abortAfterCompletionWorkflow: abort after step completes is a no-op
  • AbortController abortViaHookWorkflow: external hook triggers abort on in-flight step
  • AbortController abortExternalSignalWorkflow: signal passed as workflow input
  • AbortController abortExternalSignalInFlightWorkflow: external abort fires mid-flight, propagates to nested steps
  • AbortController abortAnyInWorkflowWorkflow: AbortSignal.any composes signals inside the workflow VM
  • AbortController abortSurvivesReplayWorkflow: controller state consistent across replay
  • AbortController abortReasonTypesWorkflow: various abort reason types propagate correctly
  • AbortController abortFetchUncaughtWorkflow: uncaught fetch AbortError is FatalError, no retries
  • AbortController abortFetchInFlightWorkflow: aborting cancels an in-flight fetch
  • AbortController abortVoidSleepTimeoutWorkflow: documented void sleep().then(abort) pattern works
  • AbortController abortListenerWorkflow: signal.addEventListener fires on the deserialized step signal
  • AbortController abortThrowIfAbortedMidFlightWorkflow: throwIfAborted in a polling loop bails when abort fires
  • AbortController abortDeterministicBranchFromStepWorkflow: branches stay consistent when abort comes from a step
  • AbortController abortHookOrderingWorkflow [listener-first-abort-first]: addEventListener → hook.then → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-abort-first]: hook.then → addEventListener → abort() → resumeHook
  • AbortController abortHookOrderingWorkflow [hook-first-hook-first]: hook.then → addEventListener → resumeHook → abort()
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_41KYTNBYY60GGQ9T55F042REHH
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_41KYTNC1AE0GY9B96V84MJDBWJ
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_41KYTNC3WJ0GVJJRD0704XTSTX
  • getterStepWorkflow - getter functions with "use step" directive | wrun_41KYTNBHHY0GZYVHZM93694D2D
  • distributedAbortController - manual abort triggers signal | wrun_41KYTNBMHC0GJ9W31VGQZ0NGDH
  • distributedAbortController - TTL expiration triggers signal | wrun_41KYTNBQHD0GTJ4GPKR0EYCTPP
  • distributedAbortController - reconnect to existing controller | wrun_41KYTNBZ8D0GXXVF28GMQ65R24
  • setAttributes start: initial attributes are seeded on run creation
  • setAttributes start: reserved-prefix initial attributes are seeded with allowReservedAttributes
  • setAttributes setAttributesWorkflow: workflow-body calls append native attr_set events and merge correctly
  • setAttributes setAttributesInsideStepWorkflow: step-body calls append attributed native events
  • setAttributes fire-and-forget: void setAttributes lands without awaiting
  • setAttributes Promise.all of disjoint-key writes: every key lands
  • setAttributes workflow throws after awaited setAttributes: attribute still persists on the failed run
  • setAttributes validation DX: invalid writes throw catchable FatalErrors naming rule and limit

E2E Test Summary

Summary
Passed Failed Skipped Total
❌ ▲ Vercel Production 1090 365 239 1694
✅ 💻 Local Development 1621 0 227 1848
✅ 📦 Local Production 1621 0 227 1848
✅ 🐘 Local Postgres 1621 0 227 1848
✅ 🪟 Windows 154 0 0 154
❌ 📋 Other 948 72 212 1232
✅ vercel-multi-region 27 0 0 27
Total 7082 437 1132 8651
Details by Category

❌ ▲ Vercel Production

App Passed Failed Skipped
❌ astro 93 33 28
❌ example 101 25 28
❌ express 95 31 28
❌ fastify 90 36 28
❌ hono 92 34 28
❌ nextjs-turbopack 103 48 3
❌ nextjs-webpack 111 40 3
❌ nitro 102 24 28
❌ nuxt 98 28 28
❌ sveltekit 109 36 9
❌ vite 96 30 28

✅ 💻 Local Development

App Passed Failed Skipped
✅ astro-stable 128 0 26
✅ express-stable 128 0 26
✅ fastify-stable 128 0 26
✅ hono-stable 128 0 26
✅ nextjs-turbopack-canary 135 0 19
✅ nextjs-turbopack-stable 154 0 0
✅ nextjs-webpack-canary 135 0 19
✅ nextjs-webpack-stable 154 0 0
✅ nitro-stable 128 0 26
✅ nuxt-stable 128 0 26
✅ sveltekit-stable 147 0 7
✅ vite-stable 128 0 26

✅ 📦 Local Production

App Passed Failed Skipped
✅ astro-stable 128 0 26
✅ express-stable 128 0 26
✅ fastify-stable 128 0 26
✅ hono-stable 128 0 26
✅ nextjs-turbopack-canary 135 0 19
✅ nextjs-turbopack-stable 154 0 0
✅ nextjs-webpack-canary 135 0 19
✅ nextjs-webpack-stable 154 0 0
✅ nitro-stable 128 0 26
✅ nuxt-stable 128 0 26
✅ sveltekit-stable 147 0 7
✅ vite-stable 128 0 26

✅ 🐘 Local Postgres

App Passed Failed Skipped
✅ astro-stable 128 0 26
✅ express-stable 128 0 26
✅ fastify-stable 128 0 26
✅ hono-stable 128 0 26
✅ nextjs-turbopack-canary 135 0 19
✅ nextjs-turbopack-stable 154 0 0
✅ nextjs-webpack-canary 135 0 19
✅ nextjs-webpack-stable 154 0 0
✅ nitro-stable 128 0 26
✅ nuxt-stable 128 0 26
✅ sveltekit-stable 147 0 7
✅ vite-stable 128 0 26

✅ 🪟 Windows

App Passed Failed Skipped
✅ nextjs-turbopack 154 0 0

❌ 📋 Other

App Passed Failed Skipped
✅ e2e-local-dev-nest-stable 128 0 26
✅ e2e-local-dev-tanstack-start- 128 0 26
✅ e2e-local-postgres-nest-stable 128 0 26
✅ e2e-local-postgres-tanstack-start- 128 0 26
✅ e2e-local-prod-nest-stable 128 0 26
✅ e2e-local-prod-tanstack-start- 128 0 26
❌ e2e-vercel-prod-nest 91 35 28
❌ e2e-vercel-prod-tanstack-start 89 37 28

✅ vercel-multi-region

App Passed Failed Skipped
✅ nextjs-turbopack 27 0 0

📋 View full workflow run

@github-actions

github-actions Bot commented Jul 30, 2026

Copy link
Copy Markdown
Contributor

📊 Workflow Benchmarks

The benchmark run for 5cc453a failed. See the run logs for details.

Partial results from the failed run:

commit 5cc453a · Thu, 30 Jul 2026 23:30:27 GMT · run logs

Backend: vercel · app: nextjs-turbopack

Metric Scenario Best (ms) P75 (ms) P90 (ms) P99 (ms) Samples
TTFS step 218 (-78%) 💚 569 🔴 (-50%) 💚 1347 🔴 (+16%) 🔻 1363 🔴 (+7.8%) 30
TTFS stream 248 (+21%) 🔻 658 🔴 (-40%) 💚 1330 🔴 (+17%) 🔻 1451 🔴 (-11%) 30
TTFS hook + stream 391 (-70%) 💚 1275 🔴 (-11%) 1541 🔴 (+5.5%) 1577 🔴 (-3.8%) 30
STSO 1020 steps (inline) 174 (-5.4%) 504 (-2.9%) 565 (-1.7%) 708 (-12%) 1016
STSO 1020 steps (queue-hop) 1547 (-23%) 💚 2134 (-54%) 💚 2134 (-54%) 💚 2134 (-54%) 💚 3
WO 1020 steps 420932 (-6.7%) 420932 (-6.7%) 420932 (-6.7%) 420932 (-6.7%) 1
SL stream latency 83 (-26%) 💚 182 🔴 (+9.6%) 208 🔴 (±0%) 267 🔴 (-31%) 💚 30
SO stream overhead (text) 135 (+2.3%) 301 🔴 (+5.2%) 345 (-30%) 💚 821 (-70%) 💚 30
📈 STSO distribution vs main (inline / queue-hop histograms)

1020 steps (inline)

Cumulative STSO time: main 440353ms → this run 415269ms (Δ -25084ms, -6%)

  150-200 ms  █┃                        main   2  this  11    +9
  200-250 ms  █████████░░░┃             main  63  this  90   +27
  250-300 ms  █████████████████░░░┃     main 117  this 141   +24
  300-350 ms  ███████████████┃███       main 129  this 111   -18
  350-400 ms  ████████████████████┃     main 142  this 146    +4
  400-450 ms  ██████████████████░┃      main 125  this 137   +12
  450-500 ms  ████████████████┃██       main 130  this 117   -13
  500-550 ms  ██████████████████┃█████  main 163  this 132   -31
  550-600 ms  ██████████┃               main  74  this  74    +0
  600-650 ms  ████┃                     main  29  this  31    +2
  650-700 ms  █┃                        main  14  this  13    -1
  700-750 ms  ┃█                        main  12  this   6    -6
  750-800 ms  ┃                         main   5  this   3    -2
  800-850 ms  ┃                         main   2  this   1    -1
  850-900 ms  ┃                         main   1  this   0    -1
  900-950 ms  ┃                         main   0  this   1    +1
 950-1000 ms  ┃                         main   1  this   0    -1
1000-1050 ms  ┃                         main   0  this   1    +1
1100-1150 ms  ┃                         main   1  this   0    -1
1150-1200 ms  ┃                         main   1  this   1    +0
1200-1250 ms  ┃                         main   1  this   0    -1
1300-1350 ms  ┃                         main   2  this   0    -2
2050-2100 ms  ┃                         main   1  this   0    -1
3650-3700 ms  ┃                         main   1  this   0    -1

1020 steps (queue-hop)

Cumulative STSO time: main 9664ms → this run 5302ms (Δ -4362ms, -45%)

1500-2000 ms  ░░░░░░░░░░░░░░░░░░░░░░░┃  main 0  this 2  +2
2000-2500 ms  ███████████┃              main 1  this 1  +0
2500-3000 ms  ┃███████████              main 1  this 0  -1
4500-5000 ms  ┃███████████              main 1  this 0  -1
ℹ️ Metric definitions & methodology

The collapsed STSO distribution section above buckets every step gap of the sequential-steps run (not a sampled window), split by whether the step ending the gap ran inline — in the same warm process as the step before it, so the gap is pure framework overhead — or after a queue-hop — the first step of a fresh process, which pays queue dispatch, client reinit and event-log replay. Bars overlay the two runs: is main, marks where this run lands, bridges the gap when this run has more samples in a bucket.

Best/P75/P90/P99 deltas compare against the most recent benchmark run on main at the time of this run. 🔻 flags a delta worse than +15%, 💚 one better than −15%.

Metrics — TTFS: time to first step body (in-deployment start() → first step body, deployment clocks) · STSO: step-to-step overhead (gap between consecutive step bodies) · WO: workflow overhead (whole-run time outside step bodies, in-deployment anchored) · SL: stream latency (in-deployment write → read propagation, readAt - writtenAt) · SO: stream overhead (end-to-end write+consume time beyond the modelled generation window)

Scenarios — step: one trivial no-op step, no stream; no hooks, so the run stays in turbo mode (in-process fast path) · stream: one streaming step; no hooks, so the run stays in turbo mode (in-process fast path) · hook + stream: registers a hook before one step, which exits turbo mode (dispatch path) · 1020 steps: 1020 trivial sequential steps; STSO is measured between consecutive steps in the given step ranges, and WO is the whole-run overhead outside step bodies · stream latency: parallel reader/writer steps on a dedicated stream; SL is the in-deployment write->read propagation (readAt - writtenAt) · stream overhead (text): writer streams 300 variable-length text token deltas paced at 100/s for 3s (a haiku-size LLM's token throughput) while a parallel reader drains the whole stream; SO is the end-to-end write+consume time beyond the 3s generation window (overhead/backpressure) · stream overhead (structured): same workload as stream overhead (text), but each delta is an AI-SDK-style structured object ({ type: 'text-delta', id, text }) instead of a raw string, so the SO gap vs the text scenario is the added serialization cost

🔴 marks a percentile over its target (within target is left unmarked). Targets (p75/p90/p99, ms) — TTFS 200/300/600 · SL 50/60/125 · SO 250/500/1000

All metrics are measured from deployment-side timestamps only. Runs are triggered by an in-deployment route that stamps the anchor (clientStart) right before start(), so the CI runner’s request and its path through api.vercel.com sit outside every measured window. TTFS = in-deployment start() → first step body (turbo uses the in-process fast path, non-turbo the dispatch path), and includes the VQS dispatch hop plus any /flow cold start. STSO/WO are measured between step bodies on the deployment. SL is measured inside the workflow (parallel reader/writer steps), so it no longer includes the api.vercel.com read path.

Cold starts are kept in the numbers on purpose — they are part of real bursty-workload latency. The workbench deployment cold-starts the /flow invocation for a large fraction of runs, inflating P75+; the Best column shows the fastest (warm-start) sample for comparison.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Creates a disposable repro setup on top of current main to isolate whether disabling HTTP/2 multiplexing on the events path (WORKFLOW_H2_MULTIPLEX=0) changes the hook-storm corruption behavior, and adds a small probe route to verify the flag reaches the deployed runtime environment.

Changes:

  • Set WORKFLOW_H2_MULTIPLEX=0 in the workbench/nextjs-turbopack Vercel deployment environment.
  • Add GET /api/e2e-h2-flag to echo the runtime flag value and derived “multiplex enabled” boolean.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
workbench/nextjs-turbopack/vercel.json Adds the kill-switch env var to disable H2 multiplexing for this workbench deployment.
workbench/nextjs-turbopack/app/api/e2e-h2-flag/route.ts Adds a probe API route to confirm the env var is present at runtime before running the storm.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +12 to +18
export function GET() {
return Response.json({
WORKFLOW_H2_MULTIPLEX: process.env.WORKFLOW_H2_MULTIPLEX ?? null,
// Mirrors `h2MultiplexEnabled()` in world-vercel's http-client.
multiplexEnabled: process.env.WORKFLOW_H2_MULTIPLEX !== '0',
});
}
`vercel.json`'s `env` block is documented as passing variables to the
functions, but Vercel marks the property deprecated, and a flag that
silently fails to arrive would make a null result read as "multiplexing is
not the cause" — the one outcome where being wrong is expensive.

instrumentation.ts now supplies the value if the deployment did not, and
records which source won so the probe route can report it. That also tells
us where mitigation advice should point if #3190 owns the regression.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Signed-off-by: Pranay Prakash <pranay.gp@gmail.com>
@pranaygp

Copy link
Copy Markdown
Contributor Author

Result: the null branch of the registered prediction

Run 30589591922, 5cc453ae7, deployment example-nextjs-workflow-turbopack-2bxxl39yn:

Scenario Total completed CORRUPTED_EVENT_LOG stuck
hook-storm 200 0 199 1
hook-sleep (control) 50 50 0 0

The prediction registered above was ~33–48 of 200 if #3190 owned the regression, ~195 if it did not. 199. Stock main on the same night, same environment, same shape was 195 of 200 (30588748635). Turning events-path multiplexing off changes nothing, so #3190 does not own it.

Arrived at independently, the answer is #3198: @VaguelySerious's A/B pair from earlier today — peter/test-corrupt-two-before (reverted) versus peter/test-corrupt-two-after (present), three storms each, interleaved in time — reads 323 / 210 / 167 corrupted without it against 596 / 596 / 598 with it (30568377749, 30568416347).

One limitation worth stating: the flag's runtime value was not independently observed. The preview sits behind SAML, so GET /api/e2e-h2-flag on that deployment could not be fetched from where this ran. The flag's arrival is guaranteed structurally — instrumentation.ts supplies it if the deployment did not, and it loads before world-vercel builds the events dispatcher — but anyone with labs access can confirm it directly in a few seconds, and it is worth doing before this result is filed as final.

This branch has served its purpose and should be closed rather than merged.

@pranaygp

Copy link
Copy Markdown
Contributor Author

Final reading, now that the rest of the evidence is in: this experiment landed on its null branch, and the null is the right answer.

The prediction registered in the body before the run was: flag-off returns hook-storm to roughly 100–145 of 600 (≈33–48 of 200) if #3190 owns the regression, or stays at ≈195 of 200 if it does not. It stayed: 199 corrupted of 200 (30589591922), against 195/200 for unmodified main the same night (30588748635). Turning H2 multiplexing off changes nothing, so the events-path transport is not what saturated the hook storm.

The culprit is #3198 — matched-in-time A/B evidence, a forward-carried bisect, and a same-night control on the bisect base, all written up at #3198 (comment).

The caveat on this null, stated plainly because it is what makes it trustworthy or not: the kill switch's arrival in the deployed runtime is structurally guaranteed — instrumentation.ts sets WORKFLOW_H2_MULTIPLEX=0 before world-vercel builds its memoized events dispatcher, and that dispatcher reads the variable lazily — but it was never observed, because the preview sits behind deployment protection I could not authenticate through. Anyone with labs access can settle it in five seconds: GET /api/e2e-h2-flag on this PR's preview returns the value and which of the two mechanisms supplied it. If it comes back null, this result is void and the experiment needs rerunning.

This PR should be closed rather than merged — it is a repro harness (a vercel.json env entry, an instrumentation shim, and a probe route in one workbench app), not a change anyone wants on main. Leaving it open as a record until someone confirms the probe.

@pranaygp pranaygp closed this Jul 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants