You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The progress publisher is a hot SubmissionPublisher with no replay, and
the subscriber can only attach after backtest() returns the handle. With
the sub-millisecond test poll interval, the STARTED to COMPLETED loop
could emit both EXECUTING events and close the publisher before the
subscriber attached, so the assertion occasionally saw no EXECUTING event.
Hold the first execution poll until the subscriber is attached via a
latch counted down in onSubscribe, making the observation deterministic.
Test-only change; no production behavior is affected.
0 commit comments