summaryrefslogtreecommitdiff
path: root/groot-common
diff options
context:
space:
mode:
authorwangkuan <[email protected]>2024-09-10 17:14:50 +0800
committerwangkuan <[email protected]>2024-09-10 17:14:50 +0800
commitdaf6ee08400b1102bb7e97af2c5663fc5cee24b4 (patch)
tree0db262096e7f5f5681489ee406adb9a240dca071 /groot-common
parente4047ae73ed837fcc931fd2dee45c7fca9741df4 (diff)
[feature][bootstrap][common]node新增tags属性用于分流,需要与downstream相对应。rules中name标签修改为tag。完善单元测试,target_type新增test模式。
Diffstat (limited to 'groot-common')
-rw-r--r--groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java b/groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java
index ead0ecd..6aa9e3d 100644
--- a/groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java
+++ b/groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java
@@ -10,7 +10,7 @@ import java.io.Serializable;
@Data
public class RuleContext implements Serializable {
- private String name;
+ private String tag;
private String expression;
private Expression compiledExpression;
private OutputTag<Event> outputTag ;