Skip to content

Commit

Permalink
annotations and excluded annotations was missing from the mipIds lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Goina committed May 22, 2024
1 parent fcca2ca commit 64fb50c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ public List<String> listMatchesLocations(Collection<DataSourceParam> matchesSour
.addNames(cdMatchInput.getNames())
.addTags(cdMatchInput.getTags())
.addExcludedTags(cdMatchInput.getExcludedTags())
.addDatasetLabels(cdMatchInput.getDatasets()),
.addDatasetLabels(cdMatchInput.getDatasets())
.addAnnotations(cdMatchInput.getAnnotations())
.addExcludedAnnotations(cdMatchInput.getExcludedAnnotations()),
new PagedRequest()
.setFirstPageOffset(cdMatchInput.getOffset())
.setPageSize(cdMatchInput.getSize())
Expand Down
4 changes: 2 additions & 2 deletions colormipsearch-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.20.0</version>
<version>2.23.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.20.0</version>
<version>2.23.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down

0 comments on commit 64fb50c

Please sign in to comment.