diff options
| author | wangkuan <[email protected]> | 2024-09-10 17:14:50 +0800 |
|---|---|---|
| committer | wangkuan <[email protected]> | 2024-09-10 17:14:50 +0800 |
| commit | daf6ee08400b1102bb7e97af2c5663fc5cee24b4 (patch) | |
| tree | 0db262096e7f5f5681489ee406adb9a240dca071 /groot-common/src | |
| parent | e4047ae73ed837fcc931fd2dee45c7fca9741df4 (diff) | |
[feature][bootstrap][common]node新增tags属性用于分流,需要与downstream相对应。rules中name标签修改为tag。完善单元测试,target_type新增test模式。
Diffstat (limited to 'groot-common/src')
| -rw-r--r-- | groot-common/src/main/java/com/geedgenetworks/common/udf/RuleContext.java | 2 |
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 ; |
