Skip to content

Commit

Permalink
[QA][Code Coverage] Drop catchError and use try / catch instead, (ela…
Browse files Browse the repository at this point in the history
…stic#69198)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
2 people authored and Bamieh committed Jul 1, 2020
1 parent 09cb4e0 commit 3110868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/Jenkinsfile_coverage
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def handleIngestion(timestamp) {

def handleFail() {
def buildStatus = buildUtils.getBuildStatus()
if(params.NOTIFY_ON_FAILURE && buildStatus != 'SUCCESS' && buildStatus != 'ABORTED') {
if(params.NOTIFY_ON_FAILURE && buildStatus != 'SUCCESS' && buildStatus != 'ABORTED' && buildStatus != 'UNSTABLE') {
slackNotifications.sendFailedBuild(
channel: '#kibana-qa',
username: 'Kibana QA'
Expand Down

0 comments on commit 3110868

Please sign in to comment.