Skip to content

Commit a21ff9e

Browse files
committed
fix(server): restore compute runtime merge compatibility
1 parent 96ec0cd commit a21ff9e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • crates/openshell-server/src/compute

crates/openshell-server/src/compute/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ impl StartupResume for DockerComputeDriver {
8686
.map_err(|err| err.to_string())
8787
}
8888
}
89-
9089
/// Interval between store-vs-backend reconciliation sweeps.
9190
const RECONCILE_INTERVAL: Duration = Duration::from_secs(60);
9291

@@ -1595,6 +1594,8 @@ impl ComputeDriver for NoopTestDriver {
15951594
pub(crate) async fn new_test_runtime(store: Arc<Store>) -> ComputeRuntime {
15961595
ComputeRuntime {
15971596
driver: Arc::new(NoopTestDriver),
1597+
shutdown_cleanup: None,
1598+
startup_resume: None,
15981599
_driver_process: None,
15991600
default_image: "openshell/sandbox:test".to_string(),
16001601
store,

0 commit comments

Comments
 (0)