summaryrefslogtreecommitdiffstats
path: root/src/orchestrator
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-08-12 16:45:43 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-08-12 17:00:20 +0200
commit80825bb43c7a4f188aa060b04513168978c1db0b (patch)
tree423662d6eedbb195c732643e99f6d5b8a2f6b5c4 /src/orchestrator
parentfdd75f7ae660441db47733bac200cea4a99ba4fe (diff)
Fix clippy: Remove needless borrows
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/orchestrator')
-rw-r--r--src/orchestrator/orchestrator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/orchestrator/orchestrator.rs b/src/orchestrator/orchestrator.rs
index 7e2799d..0e548e3 100644
--- a/src/orchestrator/orchestrator.rs
+++ b/src/orchestrator/orchestrator.rs
@@ -740,7 +740,7 @@ impl<'a> JobTask<'a> {
// Create a RunnableJob object
let runnable = RunnableJob::build_from_job(
- &self.jobdef.job,
+ self.jobdef.job,
self.source_cache,
self.config,
self.git_author_env,