Anchorage API reference
    Preparing search index...

    Interface BackgroundTasksCleanupConfig

    Background-task TTL cleanup config, surfaced through FlowsafeWorkerConfig. Mirrors core BackgroundTaskManager.cleanup's two windows.

    interface BackgroundTasksCleanupConfig {
        completedTtlMs?: number;
        failedTtlMs?: number;
    }
    Index

    Properties

    completedTtlMs?: number

    Completed rows past this age expire. Default 3_600_000 (1h).

    failedTtlMs?: number

    Failed / cancelled / timed_out rows past this age expire. Default 86_400_000 (24h).