[
https://issues.apache.org/jira/browse/OOZIE-2019?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Rohini Palaniswamy updated OOZIE-2019:
--------------------------------------
Fix Version/s: (was: trunk)
> SLA miss processed on server2 not send email
> --------------------------------------------
>
> Key: OOZIE-2019
> URL: https://issues.apache.org/jira/browse/OOZIE-2019
> Project: Oozie
> Issue Type: Bug
> Reporter: Purshotam Shah
> Assignee: Purshotam Shah
> Fix For: 4.1.0
>
> Attachments: OOZIE-2019-V1.patch
>
>
> It's because of below function. When we try to load config string from DB and
> recreate event action map, it doesn't create event map properly.
> "StringTokenizer(slaConfig, "},");" has issue. It tries to tokenized on ","
> and "},".
> a.slaConfig="{[email protected]},{alert_events=START_MET,DURATION_MISS,END_MET},";
> Will become
> alert_events=START_MET
> [email protected].
> Fix is used to use String.split().
> {code}
> private void slaConfigStringToMap() {
> if (slaConfig != null) {
> StringTokenizer st = new StringTokenizer(slaConfig, "},");
> while (st.hasMoreTokens()) {
> String token = st.nextToken();
> String[] pair = token.split("=");
> if (pair.length == 2) {
> slaConfigMap.put(pair[0].substring(1), pair[1]);
> }
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)