fix(cli): repair verification failures

Update the sandbox SSH snapshot to match the current access-command error and bring system repair imports in line with clippy's absolute path lint.
This commit is contained in:
Bryan Helmkamp 2026-05-09 18:07:24 -04:00
parent 8cdc4a6f28
commit f538ece6c0
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,7 @@ use serde::Serialize;
use crate::args::{SystemRepairArgs, SystemRepairCommand, SystemRepairRunsArgs};
use crate::command_context::CommandContext;
use crate::server_client::Client;
use crate::shared::print_json_pretty;
pub(super) async fn repair_command(
@ -66,7 +67,7 @@ fn repair_runs_from(
async fn delete_repair_runs<'a>(
response: &'a types::SystemRepairRunsResponse,
server: &crate::server_client::Client,
server: &Client,
yes: bool,
) -> RepairRunsDeleteSummary<'a> {
let mut summary = RepairRunsDeleteSummary {

View file

@ -44,7 +44,7 @@ fn sandbox_ssh_rejects_non_daytona_run() {
exit_code: 1
----- stdout -----
----- stderr -----
× Sandbox provider does not support this capability.
× Sandbox provider does not support access commands.
");
}