[JIRA] (JENKINS-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2019-06-13 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
 Hey there,We have builds of a multibranch pipeline job which remove themselves with {{currentBuild.rawBuild.delete()}}. When accessing the multibranch pipeline job "Activity" or "Branches" views on the Blue Ocean interface, the builds or branches list remain empty and the plugin throws a {{IllegalStateException}} per entry: !Blue Ocean Activity view.png|thumbnail! It's logged as severe "Caught a IllegalStateException traversing the graph for run {{}}" ([see in the source code|https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-pipeline-api-impl/src/main/java/io/jenkins/blueocean/rest/impl/pipeline/PipelineNodeGraphVisitor.java#L113]). The legacy interface behaves as expected.After creating a new branch with the same pipeline script but  without  the {{currentBuild.rawBuild.delete()}} mechanism, I noticed that the branch job itself is not subject to the {{IllegalStateException}} (but still both views are empty since other builds/branches throw).Note that [a topic related to that issue has been created on the Jenkins Users Google Group|https://groups.google.com/forum/#!topic/jenkinsci-users/-tGHslFXuFw].  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

[JIRA] (JENKINS-56272) saucePublisher does not honor SAUCE_REST_ENDPOINT

2019-02-25 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-56272  
 
 
  saucePublisher does not honor SAUCE_REST_ENDPOINT   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Yeh Fang  
 
 
Components: 
 sauce-ondemand-plugin  
 
 
Created: 
 2019-02-25 17:11  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
 Hey there, I'm willing to use the Sauce Labs European data center and according to this documentation I should be able to configure the saucePublisher step by setting SAUCE_REST_ENDPOINT environment variable (which seems right according to the source code). However, I'm unable to succeed so far. Using the following pipeline... 

 

pipeline {
  agent 'any'

  environment {
SAUCE_REST_ENDPOINT = "https://eu-central-1.saucelabs.com"
SAUCE_CREDENTIALS = credentials('sauce-labs')
  }

  stages {
stage('Run') {
  steps {
sauce('sauce-labs') {
  sh 'echo "SauceOnDemandSessionID=1234567890abdcefghijklmnopqrstuv job-name=test"'
}
  }
  post {
always {
saucePublisher()
}
  }
}
  }
}
 

 ... the saucePublisher step produces the following log entry: 

 

Error retrieving Sauce Results
java.io.FileNotFoundException: https://saucelabs.com/rest/v1/USERNAME/jobs/1234567890abdcef
 

 Note that the base URL is https://saucelabs.com instead of https://eu-central-1.saucelabs.com.  
 

[JIRA] (JENKINS-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-11-23 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 
 
Priority: 
 Minor Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-09-12 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
 Hey there,We have builds of a multibranch pipeline job which remove themselves with {{currentBuild.rawBuild.delete()}}. When accessing the multibranch pipeline job "Activity" or "Branches" views on the Blue Ocean interface, the builds or branches list remain empty and the plugin throws a {{IllegalStateException}} per entry: !Blue Ocean Activity view.png|thumbnail! It's logged as severe "Caught a IllegalStateException traversing the graph for run {{}}" ([see in the source code|https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-pipeline-api-impl/src/main/java/io/jenkins/blueocean/rest/impl/pipeline/PipelineNodeGraphVisitor.java#L113]).  The legacy interface behaves as expected. After creating a new branch with the same pipeline script but the {{currentBuild.rawBuild.delete()}} mechanism, I noticed that the branch job itself is not subject to the {{IllegalStateException}} (but still both views are empty since other builds/branches throw).Note that [a topic related to that issue has been created on the Jenkins Users Google Group|https://groups.google.com/forum/#!topic/jenkinsci-users/-tGHslFXuFw].  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   

[JIRA] (JENKINS-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-09-12 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 
 
Attachment: 
 Blue Ocean Activity view.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-09-12 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
  !Blue Ocean Activity view.png|thumbnail!  Hey there,We have builds of a multibranch pipeline job which remove themselves with {{currentBuild.rawBuild.delete()}}. When accessing the multibranch pipeline job "Activity" or "Branches" views on the Blue Ocean interface, the builds or branches list remain empty and the plugin throws a {{IllegalStateException}} per entry: ! Capture d’écran 2018-09-12 à 11 Blue Ocean Activity view . 09.08. png|thumbnail! It's logged as severe "Caught a IllegalStateException traversing the graph for run {{}}" ([see in the source code|https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-pipeline-api-impl/src/main/java/io/jenkins/blueocean/rest/impl/pipeline/PipelineNodeGraphVisitor.java#L113]).After creating a new branch with the same pipeline script but the {{currentBuild.rawBuild.delete()}} mechanism, I noticed that the branch job itself is not subject to the {{IllegalStateException}} (but still both views are empty since other builds/branches throw).Note that [a topic related to that issue has been created on the Jenkins Users Google Group|https://groups.google.com/forum/#!topic/jenkinsci-users/-tGHslFXuFw].  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  

[JIRA] (JENKINS-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-09-12 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
  !Blue Ocean Activity view.png|thumbnail! Hey there,We have builds of a multibranch pipeline job which remove themselves with {{currentBuild.rawBuild.delete()}}. When accessing the multibranch pipeline job "Activity" or "Branches" views on the Blue Ocean interface, the builds or branches list remain empty and the plugin throws a {{IllegalStateException}} per entry: !Capture d’écran 2018-09-12 à 11.09.08.png|thumbnail! It's logged as severe "Caught a IllegalStateException traversing the graph for run {{}}" ([see in the source code|https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-pipeline-api-impl/src/main/java/io/jenkins/blueocean/rest/impl/pipeline/PipelineNodeGraphVisitor.java#L113]).After creating a new branch with the same pipeline script but the {{currentBuild.rawBuild.delete()}} mechanism, I noticed that the branch job itself is not subject to the {{IllegalStateException}} (but still both views are empty since other builds/branches throw).Note that [a topic related to that issue has been created on the Jenkins Users Google Group|https://groups.google.com/forum/#!topic/jenkinsci-users/-tGHslFXuFw].  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 
   

[JIRA] (JENKINS-53519) "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()

2018-09-12 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53519  
 
 
  "Caught a IllegalStateException traversing the graph for run" using currentBuild.rawBuild.delete()
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2018-09-12 09:18  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Alexis Gauthiez  
 

  
 
 
 
 

 
 Hey there, We have builds of a multibranch pipeline job which remove themselves with currentBuild.rawBuild.delete(). When accessing the multibranch pipeline job "Activity" or "Branches" views on the Blue Ocean interface, the builds or branches list remain empty and the plugin throws a IllegalStateException per entry:   It's logged as severe "Caught a IllegalStateException traversing the graph for run " (see in the source code). After creating a new branch with the same pipeline script but the currentBuild.rawBuild.delete() mechanism, I noticed that the branch job itself is not subject to the IllegalStateException (but still both views are empty since other builds/branches throw). Note that a topic related to that issue has been created on the Jenkins Users Google Group.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  

[JIRA] (JENKINS-51776) com.google.inject.CreationException with Sauce OnDemand Plugin 1.175 and later

2018-09-10 Thread alexis.gauth...@blablacar.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Alexis Gauthiez reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Actually we re-encountered the issue. We're not sure if it's linked to the plugin version though.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-51776  
 
 
  com.google.inject.CreationException with Sauce OnDemand Plugin 1.175 and later   
 

  
 
 
 
 

 
Change By: 
 Alexis Gauthiez  
 
 
Resolution: 
 Cannot Reproduce  
 
 
Status: 
 Closed Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
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.