Refactor and small fixes #179

Merged
schmelczer merged 17 commits from asch/refactor into main 2025-12-07 16:42:23 +00:00
Showing only changes of commit dce1ebebbc - Show all commits

View file

@ -57,6 +57,7 @@ impl Database {
let mut connection_pools = std::collections::HashMap::new();
info!("Applying pending database migrations");
let mut entries = tokio::fs::read_dir(&config.databases_directory_path).await?;
while let Some(entry) = entries.next_entry().await? {
if !entry.file_name().to_string_lossy().ends_with(".sqlite") {