Skip to content

Commit

Permalink
Report a message if no jobs found for wait loop
Browse files Browse the repository at this point in the history
Not an error, but surprising based on my testing.  None of my test
machines are fast enough to complete all the jobs without needing any
time for waiting.
  • Loading branch information
MarkEWaite committed Jul 8, 2023
1 parent b6b3851 commit 5e398ac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/hudson/plugins/git/GitStatusTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public void waitForAllJobsToComplete() throws Exception {
}
RunList<Run> runList = allView.getBuilds();
if (runList == null) {
Logger.getLogger(GitStatusTest.class.getName()).log(Level.INFO, "No waiting, no entries in the runList");
return;
}
runList.forEach((Run run) -> {
Expand Down

0 comments on commit 5e398ac

Please sign in to comment.