diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-10-13 16:20:24 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-10-13 16:20:24 -0700 |
commit | ff456b38862de3fd0118c6ac6b3f46edb1fbb87f (patch) | |
tree | 2c7a7e8302e5f9340d66373da9a7bab3a72dd26e /benchmark/http_simple.js | |
parent | cdde22a27d797b853efac161eaec630d3405e924 (diff) | |
download | node-new-ff456b38862de3fd0118c6ac6b3f46edb1fbb87f.tar.gz |
Add 'make bench' script
Diffstat (limited to 'benchmark/http_simple.js')
-rw-r--r-- | benchmark/http_simple.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 93903c42a9..8d66190e0f 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -74,7 +74,7 @@ var server = http.createServer(function (req, res) { body = fixed; } else if (command == "info") { - body = 'rev: ' + rev + '\n' + 'uname: ' + uname + '\n'; + body = 'rev=' + rev + '\nuname="' + uname + '"\n'; } else { status = 404; |