-
Bug
-
Resolution: Fixed
-
Major
-
None
When a project is disabled, still it can execute a build.
In the eXtreme Feedback panel it is shown as not building.
The reason:
hudson.model.AbstractProject.getIconColor()
public BallColor getIconColor()
{
if (isDisabled())
return super.getIconColor();
}
This can be changed to:
BallColor normalColor = super.getIconColor();
if(isDisabled())
{
if(normalColor.isAnimated())
return BallColor.DISABLED;
}
return normalColor;
We use disable project to let a project finish his job and then take action on that job and prevent a next build is started.
The eXtreme feedback panel does not help us right now to see if the job is finished.
[JENKINS-8358] A disabled project is always DISABLED even is the project is building
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Assignee | New: Daniel Beck [ danielbeck ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: In Progress [ 3 ] | New: Resolved [ 5 ] |
Workflow | Original: JNJira [ 138468 ] | New: JNJira + In-Review [ 188017 ] |