This commit is contained in:
Andrej Mihajlov
2025-06-02 18:59:17 +02:00
committed by Bogdan-Ștefan Neacşu
parent 0a2fd8e30d
commit a5d2ca139b
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());
}