Skip to content

Commit

Permalink
[FIXED JENKINS-20440]
Browse files Browse the repository at this point in the history
Change to make JacocoBuildAction.logger transient. This will prevent the
serialization of the PrintStream buffer.
  • Loading branch information
mrebasti committed Nov 15, 2013
1 parent 1dae727 commit c8090ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/jacoco/JacocoBuildAction.java
Expand Up @@ -39,7 +39,7 @@ public final class JacocoBuildAction extends CoverageObject<JacocoBuildAction> i

@Deprecated public transient AbstractBuild<?,?> build;

public final PrintStream logger;
public final transient PrintStream logger;
@Deprecated private transient ArrayList reports;
private transient WeakReference<CoverageReport> report;
private final String[] inclusions;
Expand Down

1 comment on commit c8090ab

@daniel-beck
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May have caused JENKINS-25818.

Please sign in to comment.