mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 02:42:24 +03:00
The two persisted-requestBody assertions failed on a loaded runner as "expected: true, actual: false", which reads like a redaction defect. It was not: pollForCallLog waited at most 120 tries x 20ms = 2.4s for the asynchronous SQLite write, and past that returned null so assert.ok(row) failed. Observed at 5253ms and 4467ms against that 2.4s ceiling. Replaced with a 30s wall-clock deadline — far past any healthy write, still bounded, and a fast machine still returns on the first pass. Verified 3/3 under synthetic load.