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 7, 2024
1 parent a2a5ba1 commit 129479d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vars/updateIntegTestFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ void call(Map args = [:]) {
println("Integration test failed for ${component.name}, creating github issue")
def testData = []
def queryData = componentIntegTestStatus.getComponentIntegTestFailedData(component.name)
def totalHits = queryData.hits.hits.collect {it._source}
def hitsInJSON = readJSON text: "${queryData}"
def totalHits = hitsInJSON.hits.hits.collect {it._source}
totalHits.each { hit ->
def rowData = [
platform : "${hit['platform']}",
Expand Down

0 comments on commit 129479d

Please sign in to comment.