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

CLI restart command fails with NullPointerException in Jenkins.doRestart

      $ sudo "/usr/lib/jvm/java-1.8.0/bin/java" -jar "/tmp/kitchen/cache/jenkins-cli.jar" -s http://aws-instance:8080 -i "/tmp/kitchen/cache/jenkins-key" restart
      
      ERROR: Unexpected exception occurred while performing restart command.
      java.lang.NullPointerException
      at jenkins.model.Jenkins.doRestart(Jenkins.java:4116)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

      https://github.com/jenkinsci/jenkins/blob/stable-2.46/core/src/main/java/jenkins/model/Jenkins.java#L4116
      The server has "StaplerResponse rsp == null".

      The issue does not appear with safe-restart, as nullity is checked on all variables
      https://github.com/jenkinsci/jenkins/blob/stable-2.46/core/src/main/java/jenkins/model/Jenkins.java#L4127

          [JENKINS-44769] CLI restart command fails with NullPointerException in Jenkins.doRestart

          Jesse Glick added a comment -

          Probably harmless, as the restart has already been initiated, but would cause the noise and incorrect exit status on the command.

          To fix, prepend the original

          if (rsp != null) // null for CLI

          Jesse Glick added a comment - Probably harmless, as the restart has already been initiated, but would cause the noise and incorrect exit status on the command. To fix, prepend the original if (rsp != null ) // null for CLI

          Code changed in jenkins
          User: Daniel Beck
          Path:
          core/src/main/java/jenkins/model/Jenkins.java
          http://jenkins-ci.org/commit/jenkins/83671af504197f031c1e89a5122a1d4168288bb4
          Log:
          [FIX JENKINS-44769] Don't access response when called from CLI

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Daniel Beck Path: core/src/main/java/jenkins/model/Jenkins.java http://jenkins-ci.org/commit/jenkins/83671af504197f031c1e89a5122a1d4168288bb4 Log: [FIX JENKINS-44769] Don't access response when called from CLI

          Code changed in jenkins
          User: Daniel Beck
          Path:
          core/src/main/java/jenkins/model/Jenkins.java
          http://jenkins-ci.org/commit/jenkins/c3b1bff6477e05050a40c0e20816bea9cf396534
          Log:
          Merge pull request #2912 from daniel-beck/JENKINS-44769

          [FIX JENKINS-44769] Don't access response when called from CLI

          Compare: https://github.com/jenkinsci/jenkins/compare/0b12bd3f7cc6...c3b1bff6477e

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Daniel Beck Path: core/src/main/java/jenkins/model/Jenkins.java http://jenkins-ci.org/commit/jenkins/c3b1bff6477e05050a40c0e20816bea9cf396534 Log: Merge pull request #2912 from daniel-beck/ JENKINS-44769 [FIX JENKINS-44769] Don't access response when called from CLI Compare: https://github.com/jenkinsci/jenkins/compare/0b12bd3f7cc6...c3b1bff6477e

          Code changed in jenkins
          User: Daniel Beck
          Path:
          core/src/main/java/jenkins/model/Jenkins.java
          http://jenkins-ci.org/commit/jenkins/28880329177a37ae04136ee1eca97c650b4acf6d
          Log:
          [FIX JENKINS-44769] Don't access response when called from CLI

          (cherry picked from commit 83671af504197f031c1e89a5122a1d4168288bb4)

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Daniel Beck Path: core/src/main/java/jenkins/model/Jenkins.java http://jenkins-ci.org/commit/jenkins/28880329177a37ae04136ee1eca97c650b4acf6d Log: [FIX JENKINS-44769] Don't access response when called from CLI (cherry picked from commit 83671af504197f031c1e89a5122a1d4168288bb4)

            danielbeck Daniel Beck
            yetanotherion Jon Alberdi
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: