1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

checkmarxExecuteScan: Relax timeout (#2265)

This commit is contained in:
Sven Merk 2020-10-29 18:03:22 +01:00 committed by GitHub
parent 582419e2f5
commit c204abb9cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,8 +225,8 @@ func NewSystemInstance(client piperHttp.Uploader, serverURL, username, password
log.RegisterSecret(token)
options := piperHttp.ClientOptions{
Token: token,
MaxRequestDuration: 60 * time.Second,
Token: token,
TransportTimeout: time.Minute * 15,
}
sys.client.SetOptions(options)