Skip to content

Commit 6af4dd4

Browse files
committed
post rebase fixy uppy
1 parent 3fd43ac commit 6af4dd4

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

nexus/db-queries/src/db/datastore/fm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl DataStore {
202202
"failed to fetch ereport {ereport_id} for case {}",
203203
case.id,
204204
)))?
205-
.into();
205+
.try_into()?;
206206
entry.insert(Arc::new(ereport)).clone()
207207
}
208208
};

nexus/types/src/fm/case.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,16 @@ impl fmt::Display for DisplayCase<'_> {
107107
let &Self {
108108
case:
109109
Case {
110-
ref id,
111-
ref created_sitrep_id,
112-
ref time_created,
113-
ref closed_sitrep_id,
114-
ref time_closed,
115-
ref de,
116-
ref ereports,
117-
ref alerts_requested,
118-
ref impacted_sp_slots,
119-
ref comment,
110+
id,
111+
created_sitrep_id,
112+
time_created,
113+
closed_sitrep_id,
114+
time_closed,
115+
de,
116+
ereports,
117+
alerts_requested,
118+
impacted_sp_slots,
119+
comment,
120120
},
121121
indent,
122122
sitrep_id,

0 commit comments

Comments
 (0)