|
||||||||
|
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

I can definitely confirm what Joris stated.
The bug is still not fixed. If you mark a node as temporarily offline while a build is running, the Timestamper plugin will still throw an NPE:
---------------------------------------------
10:16:03 Looks like the node went offline during the build. Check the slave log for the details.FATAL: null
10:16:03 java.lang.NullPointerException
10:16:03 at hudson.plugins.timestamper.annotator.TimestampAnnotatorFactory.getOffset(TimestampAnnotatorFactory.java:65)
10:16:03 at hudson.plugins.timestamper.annotator.TimestampAnnotatorFactory.newInstance(TimestampAnnotatorFactory.java:52)
10:16:03 at hudson.console.ConsoleAnnotator._for(ConsoleAnnotator.java:143)
10:16:03 at hudson.console.ConsoleAnnotator.initial(ConsoleAnnotator.java:133)
10:16:03 at hudson.console.AnnotatedLargeText.createAnnotator(AnnotatedLargeText.java:140)
10:16:03 at hudson.console.AnnotatedLargeText.writeHtmlTo(AnnotatedLargeText.java:157)
10:16:03 at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:605)
10:16:03 at hudson.model.Run.execute(Run.java:1568)
10:16:03 at hudson.plugins.project_inheritance.projects.InheritanceBuild.run(InheritanceBuild.java:96)
10:16:03 at hudson.model.ResourceController.execute(ResourceController.java:88)
10:16:03 at hudson.model.Executor.run(Executor.java:236)
---------------------------------------------
One thing to note is that this happens right in the middle of a build-step in our case. It will cause whatever is currently running to abort.
I hope this can help you track down the issue.