This is an automated email from the ASF dual-hosted git repository. jihao pushed a commit to branch evaluation-urns-fix in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit b91bcc41f4b20d67bacbd9f790616b3de1f29b87 Author: Jihao Zhang <[email protected]> AuthorDate: Tue May 19 15:49:15 2020 -0700 [TE] fix an issue that in some cases the evaluations are not generated --- .../org/apache/pinot/thirdeye/detection/algorithm/DimensionWrapper.java | 1 + 1 file changed, 1 insertion(+) diff --git a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/DimensionWrapper.java b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/DimensionWrapper.java index 8eeb7fb..7507e48 100644 --- a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/DimensionWrapper.java +++ b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/DimensionWrapper.java @@ -227,6 +227,7 @@ public class DimensionWrapper extends DetectionPipeline { for (String nestedMetricUrn : this.nestedMetricUrns) { nestedMetrics.add(MetricEntity.fromURN(nestedMetricUrn)); + evaluationMetricUrns.add(nestedMetricUrn); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
