summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-13 09:37:51 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-01-15 23:21:39 +0100
commit6fe870f5118e5eed20630d6bad63688ecf2ecb7e (patch)
tree04a8fc083e2d277492c5bd977b338ae4ff6f295d /src
parent68ebeea289bdb1e56754ad67b24c82f081f89201 (diff)
Fix clippy: useless conversion to the same type: `anyhow::Error`
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src')
-rw-r--r--src/endpoint/scheduler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/endpoint/scheduler.rs b/src/endpoint/scheduler.rs
index 008ecb7..0beca92 100644
--- a/src/endpoint/scheduler.rs
+++ b/src/endpoint/scheduler.rs
@@ -213,7 +213,7 @@ impl JobHandle {
package_version = package_version,
endpoint_uri = endpoint_uri,
container_id = container_id,
- )).into()
+ ))
}
fn create_env_in_db(&self) -> Result<Vec<dbmodels::EnvVar>> {