Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Oct 1, 2024
1 parent 1ec503e commit fe13d8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars/UpdateBuildFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ void call(Map args = [:]) {
def awsSessionToken = env.AWS_SESSION_TOKEN
def indexName = 'opensearch-distribution-build-results-*'

passedComponents = new ComponentBuildStatus(metricsUrl, awsAccessKey, awsSecretKey, awsSessionToken, indexName, this).getComponents(product, currentVersion, distributionBuildNumber, buildStartTimeFrom, buildStartTimeTo, 'passed').getComponents()
failedComponents = new ComponentBuildStatus(metricsUrl, awsAccessKey, awsSecretKey, awsSessionToken, indexName, this).getComponents(product, currentVersion, distributionBuildNumber, buildStartTimeFrom, buildStartTimeTo, 'failed').getComponents()
passedComponents = new ComponentBuildStatus(metricsUrl, awsAccessKey, awsSecretKey, awsSessionToken, indexName, this).getComponents('passed')
failedComponents = new ComponentBuildStatus(metricsUrl, awsAccessKey, awsSecretKey, awsSessionToken, indexName, this).getComponents('failed')
}
}

Expand Down

0 comments on commit fe13d8e

Please sign in to comment.