fix setting base_url on workers

This commit is contained in:
Ruben Fiszel
2023-09-23 08:57:59 -07:00
committed by GitHub
parent e3edf4fa2a
commit 7253eb4e46
+3 -3
View File
@@ -89,11 +89,11 @@ pub async fn initial_load(
};
let reload_base_url_f = async {
if server_mode {
if let Err(e) = reload_base_url_setting(db).await {
tracing::error!("Error reloading custom tags: {:?}", e)
tracing::error!("Error reloading base url: {:?}", e)
}
}
};
let reload_server_config_f = async {