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
Hide 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,23 +108,30 @@ public class GitlabHTTPRequestor {
...
@@ -108,23 +108,30 @@ public class GitlabHTTPRequestor {
* @throws java.io.IOException on gitlab api error
* @throws java.io.IOException on gitlab api error
*/
*/
public
<
T
>
T
to
(
String
tailAPIUrl
,
Class
<
T
>
type
,
T
instance
)
throws
IOException
{
public
<
T
>
T
to
(
String
tailAPIUrl
,
Class
<
T
>
type
,
T
instance
)
throws
IOException
{
HttpURLConnection
connection
=
setupConnection
(
root
.
getAPIUrl
(
tailAPIUrl
));
HttpURLConnection
connection
=
null
;
if
(
hasOutput
())
{
submitData
(
connection
);
}
else
if
(
"PUT"
.
equals
(
method
))
{
// PUT requires Content-Length: 0 even when there is no body (eg: API for protecting a branch)
connection
.
setDoOutput
(
true
);
connection
.
setFixedLengthStreamingMode
(
0
);
}
try
{
try
{
return
parse
(
connection
,
type
,
instance
);
connection
=
setupConnection
(
root
.
getAPIUrl
(
tailAPIUrl
));
}
catch
(
IOException
e
)
{
handleAPIError
(
e
,
connection
);
if
(
hasOutput
())
{
}
submitData
(
connection
);
}
else
if
(
"PUT"
.
equals
(
method
))
{
// PUT requires Content-Length: 0 even when there is no body (eg: API for protecting a branch)
connection
.
setDoOutput
(
true
);
connection
.
setFixedLengthStreamingMode
(
0
);
}
try
{
return
parse
(
connection
,
type
,
instance
);
}
catch
(
IOException
e
)
{
handleAPIError
(
e
,
connection
);
}
return
null
;
return
null
;
}
finally
{
if
(
connection
!=
null
)
{
connection
.
disconnect
();
}
}
}
}
public
<
T
>
List
<
T
>
getAll
(
final
String
tailUrl
,
final
Class
<
T
[]>
type
)
{
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