Skip to content

Commit

Permalink
[JENKINS-22791] The file should be truncated to the first 200 entries…
Browse files Browse the repository at this point in the history
…, not 500.
  • Loading branch information
escoem committed Oct 6, 2017
1 parent cfd0268 commit d940fd1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,7 +29,7 @@
@Extension
public class HeapHisto extends Component {
private static final int OFFSET = 3;
private static final int MAX = 500 + OFFSET;
private static final int MAX = 200 + OFFSET;

private static final Logger logger = Logger.getLogger(HeapHisto.class.getName());
private final WeakHashMap<Node, String> heapHistoCache = new WeakHashMap<Node, String>();
Expand Down

0 comments on commit d940fd1

Please sign in to comment.