debug return content
Cadoles/Jenkins/pipeline/head There was a failure building this commit Details

This commit is contained in:
Benjamin Bohard 2022-02-09 20:43:21 +01:00
parent ab34e49bc1
commit 2969fb2a7c
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ def exportPackages(
def exportTasks = []
packages.each {
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/content/deb/packages/", httpMode: 'POST', ignoreSslErrors: true, multipartName: "file", timeout: 900, responseHandle: 'NONE', uploadFile: "${it}"
jsonResponse = readJSON text: response.content
println(response)
def jsonResponse = readJSON text: response.content
println(jsonResponse)
exportTasks << jsonResponse['task']
}