We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ec0cd commit a21ff9eCopy full SHA for a21ff9e
1 file changed
crates/openshell-server/src/compute/mod.rs
@@ -86,7 +86,6 @@ impl StartupResume for DockerComputeDriver {
86
.map_err(|err| err.to_string())
87
}
88
89
-
90
/// Interval between store-vs-backend reconciliation sweeps.
91
const RECONCILE_INTERVAL: Duration = Duration::from_secs(60);
92
@@ -1595,6 +1594,8 @@ impl ComputeDriver for NoopTestDriver {
1595
1594
pub(crate) async fn new_test_runtime(store: Arc<Store>) -> ComputeRuntime {
1596
ComputeRuntime {
1597
driver: Arc::new(NoopTestDriver),
+ shutdown_cleanup: None,
1598
+ startup_resume: None,
1599
_driver_process: None,
1600
default_image: "openshell/sandbox:test".to_string(),
1601
store,
0 commit comments