[JIRA] (JENKINS-42316) Log report corrupted content in durable-*/pid

2017-03-09 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42316  
 
 
  Log report corrupted content in durable-*/pid   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 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-42316) Log report corrupted content in durable-*/pid

2017-03-02 Thread mike.spl...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Splain commented on  JENKINS-42316  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Log report corrupted content in durable-*/pid   
 

  
 
 
 
 

 
 Oh hey Pavel Sadikov, small world!  
 

  
 
 
 
 

 
 
 

 
 
 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-42316) Log report corrupted content in durable-*/pid

2017-03-02 Thread psadi...@bitsighttech.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Pavel Sadikov commented on  JENKINS-42316  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Log report corrupted content in durable-*/pid   
 

  
 
 
 
 

 
 Running into this as well, doesn't seem to cause any problems. Also hello Mike!  
 

  
 
 
 
 

 
 
 

 
 
 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-42316) Log report corrupted content in durable-*/pid

2017-02-28 Thread mike.spl...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Splain commented on  JENKINS-42316  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Log report corrupted content in durable-*/pid   
 

  
 
 
 
 

 
 Yeah we're seeing this too, quite annoying.  
 

  
 
 
 
 

 
 
 

 
 
 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-42316) Log report corrupted content in durable-*/pid

2017-02-24 Thread plapo...@nuglif.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Pascal Laporte created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42316  
 
 
  Log report corrupted content in durable-*/pid   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Carlos Sanchez  
 
 
Components: 
 durable-task-plugin, kubernetes-plugin  
 
 
Created: 
 2017/Feb/24 11:06 PM  
 
 
Environment: 
 jenkins 2.47  kubernetes-plugin 0.11  durable-task-plugin 1.13  
 
 
Labels: 
 kubernetes pipeline container  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Pascal Laporte  
 

  
 
 
 
 

 
 Within a container, generated with kubernetes (using kubernetes-plugin), a simple process invocation will generate multiple time this log: 

 

...
Cannot contact kubernetes-c4df03a7122e48a5a094643522eca149-2f29e02b2bb2: java.io.IOException: corrupted content in /home/jenkins/workspace/POPOPOPO@tmp/durable-a2a574cd/pid: java.lang.NumberFormatException: For input string: ""
...
 

 Here is a simple pipeline to easily reproduce: 

 

podTemplate(label: 'mypod', containers: [])
{
  stage("Test"){
  node("mypod"){
container("jnlp"){
  sh '''
  echo "#!/bin/sh
sleep 10" > popo.sh
   chmod a+x popo.sh
   ./popo.sh
  '''
}
  }
  }
}