Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
aec664c9
Commit
aec664c9
authored
Aug 12, 2015
by
Tim Olshansky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #61 from openwide-java/master
Disconnect the HTTPURLConnection after use (Fixes #59).
parents
8c85a4e0
25cdadd9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
15 deletions
+22
-15
GitlabHTTPRequestor.java
src/main/java/org/gitlab/api/http/GitlabHTTPRequestor.java
+22
-15
No files found.
src/main/java/org/gitlab/api/http/GitlabHTTPRequestor.java
View file @
aec664c9
...
...
@@ -108,7 +108,9 @@ public class GitlabHTTPRequestor {
* @throws java.io.IOException on gitlab api error
*/
public
<
T
>
T
to
(
String
tailAPIUrl
,
Class
<
T
>
type
,
T
instance
)
throws
IOException
{
HttpURLConnection
connection
=
setupConnection
(
root
.
getAPIUrl
(
tailAPIUrl
));
HttpURLConnection
connection
=
null
;
try
{
connection
=
setupConnection
(
root
.
getAPIUrl
(
tailAPIUrl
));
if
(
hasOutput
())
{
submitData
(
connection
);
...
...
@@ -125,6 +127,11 @@ public class GitlabHTTPRequestor {
}
return
null
;
}
finally
{
if
(
connection
!=
null
)
{
connection
.
disconnect
();
}
}
}
public
<
T
>
List
<
T
>
getAll
(
final
String
tailUrl
,
final
Class
<
T
[]>
type
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment