xai-org/grok-build · error

Remote session restore is not available in this build

Error message

Remote session restore is not available in this build

What it means

Error "Remote session restore is not available in this build" thrown in xai-org/grok-build.

Source

Thrown at crates/codegen/xai-grok-shell/src/session/restore_stub.rs:136

}

impl SessionStateRestoreResult {
    pub fn skipped() -> Self {
        Self::default()
    }

    pub(crate) fn is_skipped(&self) -> bool {
        self.files_copied == 0
    }
}

pub(crate) async fn restore_session(
    _client: &SessionRegistryClient,
    _session_id: &str,
    _target_cwd: &str,
    _turn_override: Option<i32>,
) -> Result<RestoreResult> {
    bail!(UNAVAILABLE)
}

pub struct RestoreSessionOpts {
    pub turn_override: Option<i32>,
    pub progress: Option<ProgressCallback>,
    pub restore_code: bool,
}

impl RestoreSessionOpts {
    pub fn conversation_only() -> Self {
        Self {
            turn_override: None,
            progress: None,
            restore_code: false,
        }
    }
}

View on GitHub (pinned to bc7f02eddd)

When it happens

Trigger: Thrown at crates/codegen/xai-grok-shell/src/session/restore_stub.rs:136 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of xai-org/grok-build@bc7f02eddd (2026-08-31). Data as JSON: /api/errors/173a26278f7ddb9d. Report an issue: GitHub.