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 992903e commit 88fd7deCopy full SHA for 88fd7de
1 file changed
nexus/catalog/src/lib.rs
@@ -78,6 +78,7 @@ async fn run_migrations(client: &mut Client) -> anyhow::Result<()> {
78
);
79
}
80
run_non_transactional_migrations(client).await?;
81
+ Ok(())
82
83
84
async fn run_non_transactional_migrations(client: &Client) -> anyhow::Result<()> {
@@ -90,6 +91,7 @@ async fn run_non_transactional_migrations(client: &Client) -> anyhow::Result<()>
90
91
.await
92
.with_context(|| format!("Failed to apply non-transactional migration: {stmt}"))?;
93
94
95
96
97
#[derive(Debug, Clone)]
0 commit comments