Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Show the names of jobs which do not load properly"

(New page: As specified in [http://issues.hudson-ci.org/browse/HUDSON-4427 | issue #4427], Hudson should report which items fail to load. This may be annoying especially if you run a Hudson instance ...)
 
 
Line 1: Line 1:
As specified in [http://issues.hudson-ci.org/browse/HUDSON-4427 | issue #4427], Hudson should report which items fail to load. This may be annoying especially if you run a Hudson instance with a lot of jobs after updating some plugins which are not backwards compatible.
+
As specified in [http://issues.hudson-ci.org/browse/HUDSON-4427 issue #4427], Hudson should report which items fail to load. This may be annoying especially if you run a Hudson instance with a lot of jobs after updating some plugins which are not backwards compatible.
  
If Hudson loads the jobs in parallel it is not able to show the names of the offending jobs right now. A workaround is to disable parallel job loading by specifying -Dhudson.model.Hudson.parallelLoad=false on the command line when starting Hudson (See [http://fisheye.hudson-ci.org/browse/hudson/trunk/hudson/main/core/src/main/java/hudson/model/Hudson.java?r=21549#l3373 | Hudson.java] or [http://wiki.hudson-ci.org/display/HUDSON/Features+controlled+by+system+propertiesthe page about system properties] for the specifics).
+
If Hudson loads the jobs in parallel it is not able to show the names of the offending jobs right now. A workaround is to disable parallel job loading by specifying -Dhudson.model.Hudson.parallelLoad=false on the command line when starting Hudson (See [http://fisheye.hudson-ci.org/browse/hudson/trunk/hudson/main/core/src/main/java/hudson/model/Hudson.java?r=21549#l3373 Hudson.java] or [http://wiki.hudson-ci.org/display/HUDSON/Features+controlled+by+system+properties the page about system properties] for the specifics).
  
This will force Hudson to use the code in [http://fisheye.hudson-ci.org/browse/hudson/trunk/hudson/main/core/src/main/java/hudson/model/Hudson.java?r=21549#l2008 | line 2008] instead.
+
This will force Hudson to use the code in [http://fisheye.hudson-ci.org/browse/hudson/trunk/hudson/main/core/src/main/java/hudson/model/Hudson.java?r=21549#l2008 line 2008] instead.

Latest revision as of 15:55, 3 January 2013

As specified in issue #4427, Hudson should report which items fail to load. This may be annoying especially if you run a Hudson instance with a lot of jobs after updating some plugins which are not backwards compatible.

If Hudson loads the jobs in parallel it is not able to show the names of the offending jobs right now. A workaround is to disable parallel job loading by specifying -Dhudson.model.Hudson.parallelLoad=false on the command line when starting Hudson (See Hudson.java or the page about system properties for the specifics).

This will force Hudson to use the code in line 2008 instead.

Back to the top