summaryrefslogtreecommitdiffstats
path: root/src/endpoint
diff options
context:
space:
mode:
Diffstat (limited to 'src/endpoint')
-rw-r--r--src/endpoint/configured.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/endpoint/configured.rs b/src/endpoint/configured.rs
index e38258c..1a894b2 100644
--- a/src/endpoint/configured.rs
+++ b/src/endpoint/configured.rs
@@ -721,12 +721,12 @@ impl<'a> PreparedContainer<'a> {
}
pub async fn start(self) -> Result<StartedContainer<'a>> {
- let container = self.endpoint.docker.containers().get(&self.create_info.id);
- let _ = container
+ self.endpoint
+ .docker
+ .containers()
+ .get(&self.create_info.id)
.start()
- .inspect(|r| {
- trace!("Starting container {} -> {:?}", self.create_info.id, r);
- })
+ .inspect(|r| trace!("Starting container {} -> {:?}", self.create_info.id, r))
.map(|r| {
r.with_context(|| {
anyhow!(