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
39402e08
Commit
39402e08
authored
Sep 15, 2017
by
David "novalis" Turner
Committed by
Tim Olshansky
Sep 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getMergeRequestByIid must use a direct url (#247)
parent
14e4766f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
GitlabAPI.java
src/main/java/org/gitlab/api/GitlabAPI.java
+2
-9
No files found.
src/main/java/org/gitlab/api/GitlabAPI.java
View file @
39402e08
...
...
@@ -1131,15 +1131,8 @@ public class GitlabAPI {
* @throws IOException on gitlab api call error
*/
public
GitlabMergeRequest
getMergeRequestByIid
(
Serializable
projectId
,
Integer
mergeRequestIid
)
throws
IOException
{
Query
query
=
new
Query
()
.
append
(
"iid"
,
mergeRequestIid
.
toString
());
query
.
mergeWith
(
new
Pagination
().
withPerPage
(
Pagination
.
MAX_ITEMS_PER_PAGE
).
asQuery
());
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
sanitizeProjectId
(
projectId
)
+
GitlabMergeRequest
.
URL
+
query
.
toString
();
List
<
GitlabMergeRequest
>
ls
=
retrieve
().
getAll
(
tailUrl
,
GitlabMergeRequest
[].
class
);
if
(
ls
.
size
()
==
0
)
{
throw
new
FileNotFoundException
();
}
return
ls
.
get
(
0
);
String
tailUrl
=
GitlabProject
.
URL
+
"/"
+
projectId
+
GitlabMergeRequest
.
URL
+
"/"
+
mergeRequestIid
;
return
retrieve
().
to
(
tailUrl
,
GitlabMergeRequest
.
class
);
}
/**
...
...
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