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 6640ab6 commit 218056eCopy full SHA for 218056e
dev-tools/omdb/src/bin/omdb/db/sitrep.rs
@@ -182,7 +182,7 @@ pub(super) async fn cmd_db_sitrep_history(
182
v: version.version.into(),
183
id: id.into_untyped_uuid(),
184
created_at: time_created,
185
- comment: comment,
+ comment,
186
}
187
});
188
nexus/src/app/background/tasks/fm_sitrep_load.rs
@@ -84,7 +84,7 @@ impl SitrepLoader {
84
.fm_current_sitrep_version(opctx)
85
.await
86
{
87
- Ok(Some(version)) => version.into(),
+ Ok(Some(version)) => version,
88
Ok(None) => match old {
89
Some(SitrepVersion { version, id, .. }) => {
90
// We should never go from "some sitrep" to "no sitrep";
0 commit comments