-
Bug
-
Resolution: Fixed
-
Minor
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
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.