Skip to content

Commit fece308

Browse files
committed
Increase timeout from 30 secs to 5 mins
Fixes #3
1 parent 29f1c59 commit fece308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ func getClient(token string) *gogitlab.Client {
7171
tr := &http.Transport{
7272
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
7373
}
74-
client := &http.Client{Transport: tr, Timeout: 30 * time.Second}
74+
client := &http.Client{Transport: tr, Timeout: 5 * time.Minute}
7575
return gogitlab.NewClient(client, token)
7676
}

0 commit comments

Comments
 (0)