Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-19140

Default parameters are not passed to a parametrized job if some keys only are passed

XMLWordPrintable

      To reproduced the issue I've created a job which have 2 StringPropertyValues as job parameter:
      parameter 1:
      name: key
      value: default value

      parameter 2:
      name: key2
      value: default value

      and a simple batch script which dumps the values:
      echo key: %key%
      echo key2: %key2%

      if I call "!build myjob now" then I got:
      key: default value
      key2: default value

      but if I call "!build myjob now key=myvalue" then I got:
      key: myvalue
      key2:

      I am expecting to have:
      key: myvalue
      key2: default value

      I've made a pull request with the relevant fix to handle properties default
      value correctly:
      https://github.com/jenkinsci/instant-messaging-plugin/pull/10

            kutzi kutzi
            williambernardet William Bernardet
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: