Suppression des modifications pour debug
Cadoles/Jenkins/pipeline/head This commit looks good Details

This commit is contained in:
Benjamin Bohard 2022-03-01 16:50:06 +01:00
parent b4bb6dd7d6
commit 8268ac2a0d
1 changed files with 1 additions and 2 deletions

View File

@ -99,9 +99,8 @@ def publishRepository(
}
}
def postBody = JsonOutput.toJson(postContent)
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/publications/deb/apt/", httpMode: 'POST', requestBody: postBody, contentType: 'APPLICATION_JSON', ignoreSslErrors: true, validResponseCodes: "100:599"
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/publications/deb/apt/", httpMode: 'POST', requestBody: postBody, contentType: 'APPLICATION_JSON', ignoreSslErrors: true
def jsonResponse = readJSON text: response.content
println(jsonResponse)
return waitForTaskCompletion(credentials, jsonResponse.task)
}