This is an automated email from the ASF dual-hosted git repository.
hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git
The following commit(s) were added to refs/heads/master by this push:
new 6fb3584 fix CI job url calculation
6fb3584 is described below
commit 6fb35848d135ac27d0201e6f65228633ebc738d8
Author: Hervé Boutemy <[email protected]>
AuthorDate: Sun Jun 4 19:27:13 2023 +0200
fix CI job url calculation
---
.../org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
b/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
index 6819d2a..7680668 100644
---
a/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
+++
b/src/main/java/org/apache/maven/dist/tools/jobs/master/ListMasterJobsReport.java
@@ -78,7 +78,7 @@ public class ListMasterJobsReport extends AbstractJobsReport {
List<Result> repoStatus = new ArrayList<>(repositoryNames.size());
for (String repository : repositoryNames) {
- final String repositoryJobUrl = MAVENBOX_JOBS_BASE_URL + "job/" +
repository;
+ final String repositoryJobUrl = MAVENBOX_JOBS_BASE_URL +
repository;
try {
Document doc = JsoupRetry.get(repositoryJobUrl);