From 05784ebd6835efb114916c6718639b33a1a23efd Mon Sep 17 00:00:00 2001 From: Till Hartmann Date: Thu, 2 Jan 2025 17:06:31 +0100 Subject: [PATCH] update warning for multiple clinvar or freq dbs --- src/server/run/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/run/mod.rs b/src/server/run/mod.rs index 7427c261..9d78c4db 100644 --- a/src/server/run/mod.rs +++ b/src/server/run/mod.rs @@ -259,7 +259,7 @@ pub async fn run(args_common: &crate::common::Args, args: &Args) -> Result<(), a .insert(genome_release, frequency_db); } _ => tracing::warn!( - "Multiple frequency databases loaded, only the first one will be used." + "Multiple frequency databases loaded. This is not supported. The respective endpoint will be unavailable." ), } } @@ -276,7 +276,7 @@ pub async fn run(args_common: &crate::common::Args, args: &Args) -> Result<(), a data.clinvar_annotators.insert(genome_release, annotator); } _ => tracing::warn!( - "Multiple clinvar databases loaded, only the first one will be used." + "Multiple clinvar databases specified. This is not supported. The respective endpoint will be unavailable." ), } }