As detailed in https://github.com/Agoric/agoric-sdk/pull/6520/, we observed an integration test failing on stage 2 (restart with no load). I tracked it to replay deliveries, which miss a crankNum and happen during a block (aka after init).
With this PR, we now handle replay deliveries in the loadgen runner slog monitor.
With https://github.com/Agoric/agoric-sdk/pull/6442 we're only preloading at init the first 25 vats, and then dynamically loading any vat on first delivery.
As detailed in https://github.com/Agoric/agoric-sdk/pull/6520/, we observed an integration test failing on stage 2 (restart with no load). I tracked it to replay deliveries, which miss a
crankNum
and happen during a block (aka after init).With this PR, we now handle replay deliveries in the loadgen runner slog monitor.