Skip to content

Commit

Permalink
increase http timeout (#4923)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiloKo authored May 7, 2024
1 parent 9a8b146 commit daf559a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/abap/build/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,11 @@ func (conn *Connector) InitAAKaaS(aAKaaSEndpoint string, username string, passwo
}

conn.Client.SetOptions(piperhttp.ClientOptions{
Username: username,
Password: password,
CookieJar: cookieJar,
Certificates: tlsCertificates,
Username: username,
Password: password,
CookieJar: cookieJar,
Certificates: tlsCertificates,
TransportTimeout: 15 * time.Minute, //Usually ABAP Backend has timeout of 10min, let them interrupt the connection...
})

if tlsCertificates != nil {
Expand Down

0 comments on commit daf559a

Please sign in to comment.