Skip to content

Commit

Permalink
fix: modify maxBodySize of capturer from 1MB to 5KB
Browse files Browse the repository at this point in the history
  • Loading branch information
yippeehuang committed Jan 28, 2019
1 parent 143b6dd commit 10689be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/tsw/runtime/capturer.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ process.nextTick(function() {
let result = [];
let buffer = Buffer.alloc(0);
let bodySize = 0;
const maxBodySize = 1024 * 1024;
const maxBodySize = 512 * 1024;
const timeStart = Date.now();
let timeLookup = timeStart;
let timeConnect = timeStart;
Expand Down

0 comments on commit 10689be

Please sign in to comment.