summaryrefslogtreecommitdiffstats
path: root/src/endpoint/configured.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-15 10:35:00 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-15 10:42:47 +0100
commit55fe4d7ebb9183b452693965ee3f1162681a589c (patch)
tree6fd4a62182a09a7ee9f64e304c746acedfe026e1 /src/endpoint/configured.rs
parent49d0c1f7fa51ced87547fd75f904a52fc6f53b90 (diff)
Fix indentation
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/endpoint/configured.rs')
-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 a9d4982..11db626 100644
--- a/src/endpoint/configured.rs
+++ b/src/endpoint/configured.rs
@@ -147,7 +147,7 @@ impl Endpoint {
.into_iter()
.map(ImageName::from)
})
- .flatten()
+ .flatten()
.collect::<Vec<ImageName>>();
trace!("Available images = {:?}", available_names);
@@ -160,7 +160,7 @@ impl Endpoint {
Ok(())
}
})
- .collect::<Result<Vec<_>>>()
+ .collect::<Result<Vec<_>>>()
.map(|_| ())
}
@@ -257,7 +257,7 @@ impl Endpoint {
.await
.map_err(Error::from)
})
- .collect::<futures::stream::FuturesUnordered<_>>()
+ .collect::<futures::stream::FuturesUnordered<_>>()
.collect::<Result<Vec<_>>>()
.await?;
}
@@ -289,9 +289,9 @@ impl Endpoint {
})
})
})
- .collect::<Result<Vec<_>>>()
+ .collect::<Result<Vec<_>>>()
})
- .inspect(|r| { trace!("Fetching log from container {} -> {:?}", container_id, r); })
+ .inspect(|r| { trace!("Fetching log from container {} -> {:?}", container_id, r); })
.map(|r| r.with_context(|| anyhow!("Fetching log from container {} on {}", container_id, self.name)))
.await?;