Skip to content

Commit

Permalink
Merge pull request #29177 Add html suffix to worker page dumps so chr…
Browse files Browse the repository at this point in the history
…ome can render them correctly.
  • Loading branch information
robertwb authored Nov 7, 2023
2 parents 6c95636 + 23ba59b commit a04e920
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,8 @@ public void run() {
+ options.getWorkerId()
+ "_"
+ page.pageName()
+ timestamp)
+ timestamp
+ ".html")
.replaceAll("/", "_"));
writer = new PrintWriter(outputFile, UTF_8.name());
page.captureData(writer);
Expand Down

0 comments on commit a04e920

Please sign in to comment.