We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f91cc2 commit bf33ebfCopy full SHA for bf33ebf
dev-tools/omdb/src/bin/omdb/db/sitrep.rs
@@ -161,8 +161,12 @@ pub(super) async fn cmd_db_sitrep_history(
161
match datastore.fm_sitrep_metadata_read(&opctx, v.id).await {
162
Ok(s) => (s.comment, Some(s.time_created)),
163
Err(e) => {
164
+ // If the sitrep has an entry in the history table, we
165
+ // expect that it will not yet have been archived and
166
+ // deleted, so this is an error rather a case of it just
167
+ // no longer existing.
168
eprintln!(
- "failed to get fetch metadata for sitrep {} (v{}): {e}",
169
+ "failed to fetch metadata for sitrep {} (v{}): {e}",
170
v.id, v.version
171
);
172
("<ERROR>".to_string(), None)
0 commit comments