Compare commits

..

No commits in common. "1f6a71e0a9e662943bfa71c53fbbf27b7d8dec67" and "4153859453ca4f170da0acceab6a59878f1d2f10" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ 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, uploadFile: "${it}"
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/content/deb/packages/", httpMode: 'POST', ignoreSslErrors: true, multipartName: "file", customHeaders: [[name: 'Transfer-Encoding', value: 'chunked']], timeout: 900, uploadFile: "${it}"
def jsonResponse = readJSON text: response.content
exportTasks << jsonResponse['task']
}