[JIRA] (JENKINS-40548) Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script

2017-03-15 Thread jenk...@uhp-software.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 UHP commented on  JENKINS-40548  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script   
 

  
 
 
 
 

 
 This is quite major for us since we cannot restart jenkins server without losing all states of waiting builds. Is there any feedback on this? It looks quite similiar to https://issues.jenkins-ci.org/browse/JENKINS-31570 even if there it is connected to a CloudBees feature which we are not using.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-40548) Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script

2017-02-13 Thread jenk...@uhp-software.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 UHP updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40548  
 
 
  Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script   
 

  
 
 
 
 

 
Change By: 
 UHP  
 
 
Priority: 
 Minor Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-40548) Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script

2016-12-19 Thread jenk...@uhp-software.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 UHP created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40548  
 
 
  Pipeline resume not possible after restart caused by java.lang.ClassNotFoundException when loading (load) main pipeline script   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 pipeline  
 
 
Created: 
 2016/Dec/19 5:27 PM  
 
 
Environment: 
 Jenkins ver. 2.37  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 UHP  
 

  
 
 
 
 

 
 When we have a pipeline which is started like this: 

 

def mainHandler
node{
checkout scm
mainHandler = load "deployment/Jenkinsfile"
}
mainHandler.runIntegration(this)
 

 and "deployment/Jenkinsfile" looking like: 

 

#!groovy

package com.xxx.groovy.integration

def runIntegration(def configuration) {
node{

}
}
 

 When we restart the Jenkins Master, resuming is not possible: 

 
java.io.IOException: Failed to load build state
	at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution$3.onSuccess(CpsFlowExecution.java:610)
	at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution$3.onSuccess(CpsFlowExecution.java:608)
	at