Skip to content

Commit 1404220

Browse files
committed
refactor(sandbox): use imported PathBuf consistently
Signed-off-by: Evan Lezar <elezar@nvidia.com>
1 parent 460d9a1 commit 1404220

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • crates/openshell-sandbox/src

crates/openshell-sandbox/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ mod sidecar_control;
1616

1717
use miette::{IntoDiagnostic, Result, WrapErr};
1818
use std::future::Future;
19+
use std::path::PathBuf;
1920
use std::sync::Arc;
2021
use std::sync::atomic::AtomicU32;
2122
use std::time::Duration;
@@ -454,7 +455,7 @@ pub async fn run_sandbox(
454455
retained_proto.clone(),
455456
openshell_endpoint.clone(),
456457
sandbox_id.clone(),
457-
std::path::PathBuf::from(trusted_ssh_socket_path),
458+
PathBuf::from(trusted_ssh_socket_path),
458459
);
459460
}
460461

0 commit comments

Comments
 (0)