1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-18 05:18:24 +02:00

Fix(gctsDeploy) : add client in config url, disable retry for create and pull (#3464)

This commit is contained in:
Sarat Krishnan 2022-01-25 17:18:05 +01:00 committed by GitHub
parent 480d1c260f
commit 6e139aee96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -471,9 +471,10 @@ func pullByCommit(config *gctsDeployOptions, telemetryData *telemetry.CustomData
return errors.Wrap(cookieErr, "creating a cookie jar failed")
}
clientOptions := piperhttp.ClientOptions{
CookieJar: cookieJar,
Username: config.Username,
Password: config.Password,
CookieJar: cookieJar,
Username: config.Username,
Password: config.Password,
MaxRetries: -1,
}
httpClient.SetOptions(clientOptions)
@ -531,9 +532,10 @@ func createRepositoryForDeploy(config *gctsCreateRepositoryOptions, telemetryDat
return errors.Wrapf(cookieErr, "creating repository on the ABAP system %v failed", config.Host)
}
clientOptions := piperhttp.ClientOptions{
CookieJar: cookieJar,
Username: config.Username,
Password: config.Password,
CookieJar: cookieJar,
Username: config.Username,
Password: config.Password,
MaxRetries: -1,
}
httpClient.SetOptions(clientOptions)
@ -615,7 +617,7 @@ func getConfigurationMetadata(config *gctsDeployOptions, httpClient piperhttp.Se
var response configurationMetadataBody
log.Entry().Infof("Starting to retrieve configuration metadata from the system")
requestURL := config.Host +
"/sap/bc/cts_abapvcs/config"
"/sap/bc/cts_abapvcs/config?sap-client=" + config.Client
resp, httpErr := httpClient.SendRequest("GET", requestURL, nil, nil, nil)
defer func() {