AutoBE
    Preparing search index...

    Interface IAutoBeDebugRuntimeRepairRejection

    A Debug repair rewrite batch that was rejected instead of applied.

    interface IAutoBeDebugRuntimeRepairRejection {
        diagnostics?: string[];
        endpoint: string;
        location?: string;
        message?: string;
        phase?: number;
        reason:
            | "runtime_setup_failed"
            | "non_improving_runtime"
            | "repeated_failure_signature"
            | "stagnated_runtime"
            | "regressed_runtime"
            | "no_successful_rewrite";
    }
    Index

    Properties

    diagnostics?: string[]

    Compact diagnostic lines that explain the rejection, when available.

    endpoint: string

    METHOD:/path identifier for the endpoint being repaired.

    location?: string

    Provider file path associated with the rejected candidate, when known.

    message?: string

    Compact human-readable rejection detail.

    phase?: number

    Topological repair phase, when the endpoint was phase-grouped.

    reason:
        | "runtime_setup_failed"
        | "non_improving_runtime"
        | "repeated_failure_signature"
        | "stagnated_runtime"
        | "regressed_runtime"
        | "no_successful_rewrite"

    Machine-readable rejection category.