Skip to content

Commit

Permalink
MINOR: Fix DI most view data assets aggregation (open-metadata#17288)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 authored Aug 6, 2024
1 parent cf04d44 commit a579431
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public List<Object> aggregate() {
for (B entityFqnBucket : getBuckets(entityFqnBuckets)) {
String tableFqn = getKeyAsString(entityFqnBucket);
S sumPageViews = getAggregations(entityFqnBucket, "pageViews");
M ownerBucket = getBucketAggregation(entityFqnBucket, "owner");
M ownerBucket = getBucketAggregation(entityFqnBucket, "owners");
M entityTypeBucket = getBucketAggregation(entityFqnBucket, "entityType");
M entityHrefBucket = getBucketAggregation(entityFqnBucket, "entityHref");
String owner = getFirstValueFromBucketOrNull(ownerBucket);
Expand Down

0 comments on commit a579431

Please sign in to comment.