-
Bug
-
Resolution: Fixed
-
Major
-
Jenkins 1.565.1
The button "Keep this build forever" is not visible in the build summary page when a BuildDiscarder other than LogRotator is configured. I don't think this is intentionally.
The problem is in Jelly file core\src\main\resources\hudson\model\Run\logKeep.jelly, line 30:
<j:if test="${it.parent.logRotator!=null and it.canToggleLogKeep()}">
Should be fixed to:
<j:if test="${it.parent.buildDiscarder!=null and it.canToggleLogKeep()}">
- links to
[JENKINS-26438] "Keep this build forever" button not visible if BuildDiscarder other than LogRotator is configured
Assignee | New: Daniel Beck [ danielbeck ] |
Priority | Original: Minor [ 4 ] | New: Major [ 3 ] |
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Remote Link | New: This issue links to "PR 2443 (Web Link)" [ 14601 ] |
I agree. Great analysis!