Skip to content

Commit

Permalink
update warning for multiple clinvar or freq dbs
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Jan 2, 2025
1 parent 720b934 commit 05784eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/run/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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."
),
}
}
Expand All @@ -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."
),
}
}
Expand Down

0 comments on commit 05784eb

Please sign in to comment.