toujours33 opened a new issue, #16820:
URL: https://github.com/apache/dolphinscheduler/issues/16820

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### What happened
   
   After alert sent, the `AlertStatus` keep `PartialSuccess` whenever the alert 
behavior was.
   
   `long failureCount = alertSendStatuses.stream()`
   `     .map(alertSendStatus -> alertSendStatus.getSendStatus() == 
AlertStatus.EXECUTION_FAILURE)`
   `     .count();`
   `long successCount = alertSendStatuses.stream()`
   `    .map(alertSendStatus -> alertSendStatus.getSendStatus() == 
AlertStatus.EXECUTION_SUCCESS)`
   `    .count();`
   
   failureCount or successCount are consistent for `map` function change 
`AlertSendStatus` stream to `Boolean` stream.
   
   
   ### What you expected to happen
   
   The `failureCount` and `successCount` must count correctly
   
   ### How to reproduce
   
   1. Configure a alert instance and alert group
   2. Create a process
   3. Trigger the process by set Notification Strategy with `All` and Alarm 
Group in 1st step 
   4. Fetch records in table `t_ds_alert`, you can see `alert_status` column 
all in value 3, which means PartialSuccess.
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   dev
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
[email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to