summaryrefslogtreecommitdiffstats
path: root/rules/mdons-rule.drl
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2020-11-03 09:58:36 +0800
committerGuangrongFu <fu.guangrong@zte.com.cn>2020-11-03 09:58:36 +0800
commitfa2f14b76044cb0744c0f4a31de625fec148fe0c (patch)
tree96e8c036c861fae9cfbd798613de2b6e17ebbc47 /rules/mdons-rule.drl
parent8dfcd0a87185fccb56dc2e47abd09db0cf798b8e (diff)
Changed the CL Ouput Topic to dcae_cl_out
Change-Id: I9c3ffa5907fc6e73bdcf0e7d7648baf5d1619066 Issue-ID: HOLMES-369 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rules/mdons-rule.drl')
-rw-r--r--rules/mdons-rule.drl4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/mdons-rule.drl b/rules/mdons-rule.drl
index c4bc803..a5a64d5 100644
--- a/rules/mdons-rule.drl
+++ b/rules/mdons-rule.drl
@@ -75,7 +75,7 @@ rule "Process Alarms MSA"
for(Map.Entry<String,String> entry : map.entrySet()){
PolicyMsg msg = createPolicyMsg($a, entry.getKey(), entry.getValue());
DmaapService dmaapService = ServiceLocatorHolder.getLocator().getService(DmaapService.class);
- dmaapService.publishPolicyMsg(msg, "unauthenticated.DCAE_Output_Event");
+ dmaapService.publishPolicyMsg(msg, "dcae_cl_out");
DroolsLog.printInfo("Published to policy=" + msg.toString());
}
@@ -95,7 +95,7 @@ rule "Process Alarms TAPI"
for(Map.Entry<String,String> entry : map.entrySet()){
PolicyMsg msg = createPolicyMsg($a, entry.getKey(), entry.getValue());
DmaapService dmaapService = ServiceLocatorHolder.getLocator().getService(DmaapService.class);
- dmaapService.publishPolicyMsg(msg, "unauthenticated.DCAE_Output_Event");
+ dmaapService.publishPolicyMsg(msg, "dcae_cl_out");
DroolsLog.printInfo("Published to policy=" + msg.toString());
}