Skip to content

Commit

Permalink
Fixed bytesWritten error
Browse files Browse the repository at this point in the history
  • Loading branch information
samalba committed Mar 21, 2013
1 parent 400df25 commit 16ef4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ Worker.prototype.runServer = function (config) {
return JSON.stringify({
remoteAddress: remoteAddress,
remotePort: remotePort,
bytesWritten: connection.bytesWritten,
bytesWritten: connection._bytesDispatched,
bytesRead: connection.bytesRead,
elapsed: (Date.now() - start) / 1000
});
Expand Down

0 comments on commit 16ef4e2

Please sign in to comment.