Remove uname and git-rev detection from http_simple.js
authorRyan Dahl <ry@tinyclouds.org>
Wed, 12 Oct 2011 19:29:40 +0000 (12:29 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Wed, 12 Oct 2011 19:29:40 +0000 (12:29 -0700)
benchmark/http_simple.js

index 120c205..4b55028 100644 (file)
@@ -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";