(&self, sandbox_image_ref: &str)
| 1717 | } |
| 1718 | |
| 1719 | fn bootstrap_image_ref(&self, sandbox_image_ref: &str) -> String { |
| 1720 | let configured = self.config.bootstrap_image.trim(); |
| 1721 | if !configured.is_empty() { |
| 1722 | return configured.to_string(); |
| 1723 | } |
| 1724 | let default = self.config.default_image.trim(); |
| 1725 | if !default.is_empty() { |
| 1726 | return default.to_string(); |
| 1727 | } |
| 1728 | sandbox_image_ref.to_string() |
| 1729 | } |
| 1730 | |
| 1731 | async fn prepare_runtime_overlay( |
| 1732 | &self, |
no test coverage detected