This is an automated email from the ASF dual-hosted git repository.
rfscholte 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 f7dd0d9 continue in case job_master is missing
f7dd0d9 is described below
commit f7dd0d970789a819d8e699d2cb5a4b844f949ce8
Author: rfscholte <[email protected]>
AuthorDate: Wed May 15 22:38:50 2019 +0200
continue in case job_master is missing
---
.../java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
b/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
index 472bb80..2cc8dee 100644
---
a/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
+++
b/src/main/java/org/apache/maven/dist/tools/masterjobs/ListMasterJobsMojo.java
@@ -108,6 +108,7 @@ public class ListMasterJobsMojo extends AbstractMavenReport
if ( masterRow == null )
{
getLog().warn( mavenboxJobsBaseUrl + repository + " is
missing id job_master" );
+ continue;
}
else if ( masterRow.hasClass( "job-status-red" ) ||
masterRow.hasClass( "job-status-red-anime" ) )
{