summaryrefslogtreecommitdiffstats
path: root/src/commands/db.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-05-03 13:09:11 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-05-11 09:58:59 +0200
commitced09dfe2335c99c3234fa98941a252a1bc94845 (patch)
tree77a7a889a05bcd8466ba82a430a4c6784c4b8612 /src/commands/db.rs
parent378187caf57838d3333dfb013ec0607b9ad1177c (diff)
Fix: Order of header entries
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src/commands/db.rs')
-rw-r--r--src/commands/db.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/db.rs b/src/commands/db.rs
index 4c65d09..c3a3eb1 100644
--- a/src/commands/db.rs
+++ b/src/commands/db.rs
@@ -274,7 +274,7 @@ fn submit(conn_cfg: DbConnectionConfig, matches: &ArgMatches) -> Result<()> {
n_jobs_err = jobs_err.to_string().red(),
)?;
- let header = crate::commands::util::mk_header(["Job", "Success", "Package", "Version", "Endpoint", "Container", "Image"].to_vec());
+ let header = crate::commands::util::mk_header(["Job", "Success", "Package", "Version", "Container", "Endpoint", "Image"].to_vec());
let data = jobs.iter()
.map(|job| {
let image = models::Image::fetch_for_job(&conn, job)?