mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
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:
parent
8cdc4a6f28
commit
f538ece6c0
2 changed files with 3 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue