(&self, sandbox: DriverSandbox)
| 720 | } |
| 721 | |
| 722 | async fn provision_sandbox(&self, sandbox: DriverSandbox) { |
| 723 | match self.provision_sandbox_inner(&sandbox).await { |
| 724 | Ok(()) => { |
| 725 | self.clear_pending_sandbox(&sandbox.id).await; |
| 726 | } |
| 727 | Err(failure) => { |
| 728 | self.fail_pending_sandbox(&sandbox, &failure).await; |
| 729 | } |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | async fn provision_sandbox_inner( |
| 734 | &self, |
no test coverage detected