@pwngh/economy-lab
    Preparing search index...

    Type Alias StuckSagaFinding

    One stuck saga from detectStuckSagas; the poll emits one finding per saga.

    type StuckSagaFinding = {
        ageMs: number;
        saga: Saga;
        signature: "stuck-saga";
    }
    Index
    ageMs: number

    Milliseconds since the saga's updatedAt.

    saga: Saga

    The saga row as of the poll; the supervisor re-loads it after acting to verify progress.

    signature: "stuck-saga"