(&self, sandbox_id: &str)
| 1345 | } |
| 1346 | |
| 1347 | async fn apply_deleted(&self, sandbox_id: &str) -> Result<(), String> { |
| 1348 | let _guard = self.sync_lock.lock().await; |
| 1349 | self.apply_deleted_locked(sandbox_id).await |
| 1350 | } |
| 1351 | |
| 1352 | async fn apply_deleted_locked(&self, sandbox_id: &str) -> Result<(), String> { |
| 1353 | let sandbox = self |
no test coverage detected