From 16e1d5b5ceb43610dac3d73d5ea063f5e182d8bb Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 12 Oct 2011 12:29:40 -0700 Subject: [PATCH] Remove uname and git-rev detection from http_simple.js --- benchmark/http_simple.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 120c2050cc..4b550283b8 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -11,26 +11,6 @@ for (var i = 0; i < 20*1024; i++) { fixed += "C"; } -var uname, rev; - -exec('git rev-list -1 HEAD', function (e, stdout) { - if (e) { - console.error("Problem executing: 'git rev-list -1 HEAD'"); - throw new Error(e); - } - rev = stdout.replace(/\s/g, ''); -}); - -exec('uname -a', function (e, stdout) { - if (e) { - console.error("Problem executing: 'uname -a'"); - throw new Error(e); - } - uname = stdout.replace(/[\r\n]/g, ''); -}); - - - stored = {}; storedBuffer = {}; @@ -74,9 +54,6 @@ var server = http.createServer(function (req, res) { } else if (command == "fixed") { body = fixed; - } else if (command == "info") { - body = 'rev=' + rev + '\nuname="' + uname + '"\n'; - } else { status = 404; body = "not found\n";