-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Linux version 3.10.0-1062.12.1.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Tue Feb 4 23:02:59 UTC 2020
Installation source:
[jenkins]
name=Jenkins-stable
baseurl=http://pkg.jenkins.io/redhat-stable
gpgcheck=1
Example pipeline:
pipeline { agent any parameters { password(name: 'env_db_password', defaultValue: '123456', description: 'Database password') } stages { stage('Use password') { steps { sh label:"Test Params",script:''' echo ${env_db_password} > ./.env cat ./.env ''' } } } }
If you run this pipeline from classic UI input will contain masked default value, and pipeline works correct.
But if you use BlueOceanUI, input will be empty and pipeline starting with empty value instead default.
My version is 1.23.0 · Core 2.204.2 · 1115daf · 20th April 2020 11:55 PM
Found in blueocean-core-js.js:56366
That is the reason of my ticket I guess. Have you any information about fix date? or workaround?