Skip to content

Commit

Permalink
OPIK-42 Experiment compare for single supplied experiment (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrescrz authored Sep 3, 2024
1 parent 167ee62 commit 8c0b1a8
Show file tree
Hide file tree
Showing 4 changed files with 446 additions and 55 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,13 @@ public Response findDatasetItemsWithExperimentItems(
.entityType(FeedbackScoreDAO.EntityType.TRACE)
.build();

log.info("Finding dataset items with experiment items by '{}'", datasetItemSearchCriteria);
log.info("Finding dataset items with experiment items by '{}', page '{}', size '{}'",
datasetItemSearchCriteria, page, size);
var datasetItemPage = itemService.getItems(page, size, datasetItemSearchCriteria)
.contextWrite(ctx -> setRequestContext(ctx, requestContext))
.block();
log.info("Found dataset items with experiment items by '{}', count '{}'",
datasetItemSearchCriteria, datasetItemPage.content().size());
log.info("Found dataset items with experiment items by '{}', count '{}', page '{}', size '{}'",
datasetItemSearchCriteria, datasetItemPage.content().size(), page, size);
return Response.ok(datasetItemPage).build();
}

Expand Down
Loading

0 comments on commit 8c0b1a8

Please sign in to comment.