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

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

View File

@ -7,7 +7,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}"
println(it)
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/content/deb/packages/", httpMode: 'POST', ignoreSslErrors: true, multipartName: "file", timeout: 900, uploadFile: "${it}"
println(response)
def jsonResponse = readJSON text: response.content
println(jsonResponse)