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

Question marks in pipeline stage names break parameterized input steps

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Minor Minor
    • pipeline
    • None
    • Jenkins 2.204.1
      Pipeline 2.6
      Pipeline: Declarative 1.5.0
      Pipeline: Input Step 2.11

      Pipelines can have stages named with a question mark inside, but if that stage has an input step (with 'parameters' so that it brings up the input in a hyperlinked page) the question mark breaks the input return URI.  You get a 404 when you click the hyperlink in the input dialog.

       

      To repro:

      Put this stage into a pipeline

            stage('Approve?')
            {
                  input {
                      message "Should we continue?"
                      ok "Yes, we should."
                      parameters {
                          string(name: 'PERSON', defaultValue: 'Mr Jenkins', description: 'Who should I say hello to?')
                      }
                  }
                  steps {
                      echo "Hello, ${PERSON}, nice to meet you."
                  }
            }
      

      During pipeline execution, when coming to input step, it blocks in the console on a hyperlink "Input requested".  Clicking the hyperlink takes you to the input dialog.  Trying to click Ok gives a 404 since the stage name is in the URI.

       

            Unassigned Unassigned
            galsunganylew Barrett Lewis
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: