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

Parameterized Remote Trigger Plugin does not support multi line parameters anymore

XMLWordPrintable

      in version 3.1.6.1 the multiline parameters does not work anymore like:

      parameters:  """
          PROJECT_NAME=${projectName}
          RELEASE_NAME=${releaseName}
          STORAGE_LOCATION=${lastBuild}
          DASHBOARD_LOCATION=${lastBuild}\\..
      RegressionTest""",

       

      Unfortionatly there is no documentation on this and after looking into the code it seems that it needs to be programmed like:

      parameters: [
                    "PROJECT_NAME"       : "${projectName}",
                    "RELEASE_NAME"       : "${releaseName}",
                    "STORAGE_LOCATION"   : "${lastBuild}",
                    "DASHBOARD_LOCATION" : "${lastBuild}\\..
      RegressionTest"
                  ],

       

      Please document these kind of changes !!

            cashlalala KaiHsiang Chang
            rene_kempen Rene Kempen
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: