You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2018/11/20 01:39:03 UTC

[incubator-pinot] branch master updated: [TE] rootcause - fix filter processing for predicted baseline (#3523)

This is an automated email from the ASF dual-hosted git repository.

apucher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 3774532  [TE] rootcause - fix filter processing for predicted baseline (#3523)
3774532 is described below

commit 37745326dd02ab5e1d6ca80fd1e29399371899cb
Author: Alexander Pucher <ap...@linkedin.com>
AuthorDate: Mon Nov 19 17:38:58 2018 -0800

    [TE] rootcause - fix filter processing for predicted baseline (#3523)
---
 .../app/pods/services/rootcause-anomalyfunction-cache/service.js        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/thirdeye/thirdeye-frontend/app/pods/services/rootcause-anomalyfunction-cache/service.js b/thirdeye/thirdeye-frontend/app/pods/services/rootcause-anomalyfunction-cache/service.js
index 33a96e6..48d6317 100644
--- a/thirdeye/thirdeye-frontend/app/pods/services/rootcause-anomalyfunction-cache/service.js
+++ b/thirdeye/thirdeye-frontend/app/pods/services/rootcause-anomalyfunction-cache/service.js
@@ -118,7 +118,7 @@ export default Service.extend({
   _toFilterMapCustom(filters) {
     const filterMap = {};
     [...filters].forEach(tup => {
-      const [key, value] = tup;
+      const [key, op, value] = tup;
       filterMap[key] = value;
     });
     return filterMap;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org