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

Blue Ocean Input Step Json Error

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Major Major
    • blueocean-plugin
    • None
    • Jenkins 2.190.3
      Blue Ocean 1.21.0

      Hello

      Today I've upgraded my blue ocean to 1.21.0 and I've started seeing json parse error on the input stage for a moment when I click to 'Proceed' then it dissapers and works well. Also classic ui works well too.

       

      Here is the sample code and error screenshot.

      Is there anyone facing with same issue.

       

      pipeline {
          agent none    
          
          options {
              timestamps()
              skipDefaultCheckout()
          }
          stages {
          
              stage ("Promotion") {
                  steps {
                      timeout(time: 1, unit: 'HOURS') {
                          input 'Deploy to Production?'
                      }   
                      milestone(ordinal: 1, label: "PROD_DEPLOYMENT_START_MILESTONE")
                  }
              }
              
              stage ("Deployment") {
                  
                  agent any 
                  
                  steps {
                      echo 'Deploy to prod'
                  }
              }
          }
      }
      

       

       

            Unassigned Unassigned
            ugurg Ugur G
            Votes:
            1 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated: