(&self, sandbox_id: &str)
| 1093 | } |
| 1094 | |
| 1095 | async fn clear_pending_sandbox(&self, sandbox_id: &str) { |
| 1096 | let mut pending = self.pending.lock().await; |
| 1097 | pending.remove(sandbox_id); |
| 1098 | } |
| 1099 | |
| 1100 | async fn remove_pending_sandbox( |
| 1101 | &self, |
no test coverage detected