Details
-
Bug
-
Status: Resolved (View Workflow)
-
Minor
-
Resolution: Fixed
Description
The system property "hudson.consoleTailKB" is supposed to control how many KB of console log is shown in the default console view.
It is used in two places:
https://github.com/jenkinsci/jenkins/blob/master/core/src/main/resources/hudson/model/Run/console.jelly#L38
https://github.com/jenkinsci/workflow-support-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/workflow/support/actions/LogActionImpl/index.jelly#L39
Both jelly scripts expect a method getSystemProperty(key) on the Functions class. But that method does not exist. Therefore the default of 150 KB is always used and the system property is ignored.
The fix is available in this PR: https://github.com/jenkinsci/jenkins/pull/3200
Attachments
Issue Links
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Jan Zuchhold [ jan_z ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | In Review [ 10005 ] |
Remote Link | This issue links to "https://github.com/jenkinsci/jenkins/pull/3200 (Web Link)" [ 19423 ] |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10005 ] | Resolved [ 5 ] |
Labels | lts-candidate |
Labels | lts-candidate | 2.89.3-fixed |
Labels | 2.89.3-fixed | 2.89.3-fixed regression |
Code changed in jenkins
User: Jan Zuchhold
Path:
core/src/main/java/hudson/Functions.java
http://jenkins-ci.org/commit/jenkins/006c51256e58d9b691956962d9fd624fb0c1e08b
Log:
JENKINS-48593- Add getSystemProperty(key) to fix hudson.consoleTailKB system property (#3200)These changes were requested by @daniel-beck.