Skip to content

Commit ce90a2a

Browse files
author
Alexander Ost
committed
Do not reset URI path for Checks API
Fixes issue JENKINS-63887.
1 parent 4d62dcb commit ce90a2a

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/google/gerrit/plugins/checks/client

1 file changed

+1
-1
lines changed

src/main/java/com/google/gerrit/plugins/checks/client/Checks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ private URI buildRequestUrl(String suffixPath) throws URISyntaxException {
161161
.setPath(
162162
String.format(
163163
"%schanges/%d/revisions/%d/checks/%s",
164-
getPrefix(), changeNumber, patchSetNumber, suffixPath))
164+
uriBuilder.getPath() + getPrefix(), changeNumber, patchSetNumber, suffixPath))
165165
.build();
166166
}
167167
}

0 commit comments

Comments
 (0)