[JIRA] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2016-02-09 Thread mdono...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 mdonohue resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-22348 
 
 
 
  Join Plugin: intermittent NullPointerException in child project when all downstream projects complete  
 
 
 
 
 
 
 
 
 

Change By:
 
 mdonohue 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2016-02-09 Thread mdono...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 mdonohue commented on  JENKINS-22348 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Join Plugin: intermittent NullPointerException in child project when all downstream projects complete  
 
 
 
 
 
 
 
 
 
 
the suggested fix is in the 1.19 release of the join plugin 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2016-01-12 Thread miyajan...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Miyata Jumpei commented on  JENKINS-22348 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Join Plugin: intermittent NullPointerException in child project when all downstream projects complete  
 
 
 
 
 
 
 
 
 
 
With docker plugin, this issue becomes fatal problem. Please fix this. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2015-03-11 Thread sdrot...@gmail.com (JIRA)














































Steve Roth
 commented on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete















I also saw this issue occur repeatedly, as soon as we moved to dynamic slaves.

In case anyone else runs into this, our solution was to add a minor source tweak to remove the requirement that the slave which ran the job using the join-plugin persist until the join plugin downstream project is triggered. I believe this requirement was added when support for CopyArchiver was added. Since we dont use CopyArchiver plugin, this was a simple mod:

Our solution was to edit src/main/java/join/JoinAction.java

and change 

final Launcher launcher = new NoopLauncher(listener, owner);



to

final Launcher launcher = null;





























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-11-27 Thread hugo.software.develo...@gmail.com (JIRA)












































  
miguel Rodrigues
 edited a comment on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete
















@Daniel Beck

That is a good assumption, given that my use case is various EC2 instances running the jobs in parallel. some jobs take more time than other, and the node where the parent job is running was probably removed when the job that lasts the most ends.

EDIT: I changed the job that triggers all the parallel jobs ( the one that gets the join trigger) to my master node, and everything worked fine. So basically the plugin tries to notify an instance that no longer exists hence, the null pointer exception. 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-11-26 Thread hugo.software.develo...@gmail.com (JIRA)














































miguel Rodrigues
 commented on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete















@Daniel Beck

That is a good assumption, given that my use case is various EC2 instances running the jobs in parallel. some jobs take more time than other, and the node where the parent job is running was probably removed when the job that lasts the most ends.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-11-26 Thread dan...@beckweb.net (JIRA)














































Daniel Beck
 commented on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete















https://github.com/jenkinsci/join-plugin/blob/master/src/main/java/join/JoinAction.java#L120

This may occur when the build that was configured to use the join trigger was running on a node that has been removed between the build finishing and the downstream build finishing. (I don't think it's sufficient to take it offline – I'd expect a different error – but that may also be enough.)



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-11-26 Thread hugo.software.develo...@gmail.com (JIRA)












































  
miguel Rodrigues
 edited a comment on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete
















I've been experiencing this issue also. Jenkins logs don't give more information. It is intermittent, regardless of no changes. Any ideas? 

Since this plugin hasn't been upgrade for a while now, does anyone have any suggestions on alternatives? 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [join-plugin] (JENKINS-22348) Join Plugin: intermittent NullPointerException in child project when all downstream projects complete

2014-11-12 Thread hugo.software.develo...@gmail.com (JIRA)














































miguel Rodrigues
 commented on  JENKINS-22348


Join Plugin: intermittent NullPointerException in child project when all downstream projects complete















I've been experiencing this issue also. Jenkins logs don't give more information. It is intermittent, regardless of no changes. Any ideas? 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







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