Skip to content

Commit

Permalink
Update Elasticsearch index name to correct value.
Browse files Browse the repository at this point in the history
This was changed by work in the genetics output support repository.
  • Loading branch information
JarrodBaker committed Oct 7, 2022
1 parent dd19f2b commit 191ef25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/elasticsearch/ElasticsearchComponent.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object GeneticsApiQueries {
case Right(v) => v.id
case _ => term
}
search("variant_*") query boolQuery.should(termQuery("variant_id.keyword", vToken),
search("variants") query boolQuery.should(termQuery("variant_id.keyword", vToken),
termQuery("rs_id.keyword", term.toLowerCase)
) start p._1 limit p._2 trackTotalHits true
}
Expand Down

0 comments on commit 191ef25

Please sign in to comment.