Skip to content

Commit 8022be1

Browse files
committed
Merge branch 'master' into free-tier-feedback
2 parents 4a931ea + 7c98e35 commit 8022be1

File tree

35 files changed

+143
-88
lines changed

35 files changed

+143
-88
lines changed

.github/workflows/fe-e2e.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@ on:
33
push:
44
branches:
55
- master
6+
pull_request:
7+
types:
8+
- opened
9+
- edited
10+
- ready_for_review
11+
- synchronize
12+
branches:
13+
- master
614
workflow_dispatch:
715
jobs:
816
test:
917
timeout-minutes: 60
1018
runs-on: ubuntu-latest
19+
if: github.event.pull_request.draft == false
1120
steps:
1221
- name: Pull Repository
1322
uses: actions/checkout@v4

jacoco-code-coverage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>ai.startree.thirdeye</groupId>
2121
<artifactId>thirdeye</artifactId>
22-
<version>1.414.0-SNAPSHOT</version>
22+
<version>1.416.0-SNAPSHOT</version>
2323
</parent>
2424

2525
<artifactId>jacoco-code-coverage</artifactId>

pinot-test-container/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>thirdeye</artifactId>
2020
<groupId>ai.startree.thirdeye</groupId>
21-
<version>1.414.0-SNAPSHOT</version>
21+
<version>1.416.0-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<modelVersion>4.0.0</modelVersion>
1919
<groupId>ai.startree.thirdeye</groupId>
2020
<artifactId>thirdeye</artifactId>
21-
<version>1.414.0-SNAPSHOT</version>
21+
<version>1.416.0-SNAPSHOT</version>
2222
<packaging>pom</packaging>
2323
<name>thirdeye</name>
2424

thirdeye-benchmarks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>ai.startree.thirdeye</groupId>
2121
<artifactId>thirdeye</artifactId>
22-
<version>1.414.0-SNAPSHOT</version>
22+
<version>1.416.0-SNAPSHOT</version>
2323
</parent>
2424

2525
<artifactId>thirdeye-benchmarks</artifactId>

thirdeye-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>ai.startree.thirdeye</groupId>
2121
<artifactId>thirdeye</artifactId>
22-
<version>1.414.0-SNAPSHOT</version>
22+
<version>1.416.0-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>thirdeye-core</artifactId>
2525

thirdeye-dataframe/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>ai.startree.thirdeye</groupId>
2121
<artifactId>thirdeye</artifactId>
22-
<version>1.414.0-SNAPSHOT</version>
22+
<version>1.416.0-SNAPSHOT</version>
2323
</parent>
2424

2525
<modelVersion>4.0.0</modelVersion>

thirdeye-detectionpipeline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>ai.startree.thirdeye</groupId>
2121
<artifactId>thirdeye</artifactId>
22-
<version>1.414.0-SNAPSHOT</version>
22+
<version>1.416.0-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>thirdeye-detectionpipeline</artifactId>
2525

thirdeye-detectionpipeline/src/main/java/ai/startree/thirdeye/detectionpipeline/Operator.java

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,12 @@ void execute()
2626

2727
String getOperatorName();
2828

29-
void setProperty(String key, Object value);
30-
31-
3229
/**
3330
* Set keyed input
34-
* @param key
35-
* @param input
3631
*/
32+
@SuppressWarnings("unused") // used in enterprise TE
3733
void setInput(String key, OperatorResult input);
3834

39-
/**
40-
* Get keyed output
41-
* @param key
42-
*/
43-
OperatorResult getOutput(String key);
44-
4535
/**
4636
* Get all keyed outputs
4737
*/

thirdeye-detectionpipeline/src/main/java/ai/startree/thirdeye/detectionpipeline/operator/DetectionPipelineOperator.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,6 @@ protected void setOutput(String key, final OperatorResult output) {
9494
resultMap.put(key, output);
9595
}
9696

97-
@Override
98-
public void setProperty(final String key, final Object value) {
99-
planNode.getParams().putValue(key, value);
100-
}
101-
102-
@Override
103-
public OperatorResult getOutput(final String key) {
104-
return resultMap.get(key);
105-
}
106-
10797
@Override
10898
public Map<String, OperatorResult> getOutputs() {
10999
return resultMap;

0 commit comments

Comments
 (0)