|
||||||||
|
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/d/optout.

Hi,
we face the same problem.
I assume that the issue lies in the transient logger that was introduced with a fix for
JENKINS-20440. The code relies on the fact that logger is not null, but after deserialization, it will be null because it is just transient.My quick fix (or to show where the problem is located) just adds a dummy logger, so CoverageReport access a "null object". Works again. But I don't want to imply that it's the correct fix.