Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ private void createWriter() {

try {
this.byteStream = new ByteArrayOutputStream();
this.contentStream = new PrintStream( new GZIPOutputStream( byteStream ) );
// pako client side library expects byte stream to be UTF-8 encoded
this.contentStream = new PrintStream( new GZIPOutputStream( byteStream ), false, "utf-8" );
this.contentStream.append( "{\"scenarios\":[" );

this.fileStream = new PrintStream( new FileOutputStream( targetFile ), false, "utf-8" );
Expand Down