Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/e2e/api-direct/flow-user-task.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ function occ(args: string): string {
}
return execSync(`docker exec -u www-data ${CONTAINER} php occ ${args}`, {
encoding: 'utf8',
// `background-job:list` prints every job's serialized argument in one
// table; on a live instance that is well past Node's 1 MiB execSync
// default. The overflow throws ENOBUFS, the catch in runWorkerJobId()
// returns null, and the worker-driven scenarios self-skip as "occ not
// reachable" while occ is fine. Measured 1.8 MiB on a fresh proof
// instance, 2026-09-01.
maxBuffer: 32 * 1024 * 1024,
})
}

Expand Down
Loading