Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit db0a97f

Browse files
committed
removed option to set readtimeout
1 parent 9a0ec6c commit db0a97f

File tree

1 file changed

+0
-3
lines changed
  • src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api

1 file changed

+0
-3
lines changed

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/api/GitLabAPI.java

-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ public static GitLabAPI connect(String url, String token, boolean ignoreCertific
3434
try {
3535
GitlabAPI delegate = GitlabAPI.connect(url, token);
3636
delegate.ignoreCertificateErrors(ignoreCertificateErrors);
37-
if (requestTimeout > 0) {
38-
delegate.setRequestTimeout(requestTimeout);
39-
}
4037
return new GitLabAPI(delegate);
4138
} catch (Exception e) {
4239
throw new GitLabAPIException(e);

0 commit comments

Comments
 (0)