This commit is contained in:
Andrej Mihajlov
2025-06-02 18:59:17 +02:00
parent 9cc57f8f63
commit 032281dc00
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -59,7 +59,6 @@ impl PersistentStatsStorage {
if let Err(err) = sqlx::migrate!("./migrations").run(&connection_pool).await {
error!("Failed to perform migration on the SQLx database: {err}");
connection_pool.close().await;
return Err(err.into());
}
-1
View File
@@ -108,7 +108,6 @@ impl GatewayStorage {
if let Err(err) = sqlx::migrate!("./migrations").run(&connection_pool).await {
error!("Failed to perform migration on the SQLx database: {err}");
connection_pool.close().await;
return Err(err.into());
}