mirror of https://github.com/nodejs/node.git
Remove uname and git-rev detection from http_simple.js
parent
b8966872b3
commit
16e1d5b5ce
|
@ -11,26 +11,6 @@ for (var i = 0; i < 20*1024; i++) {
|
||||||
fixed += "C";
|
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 = {};
|
stored = {};
|
||||||
storedBuffer = {};
|
storedBuffer = {};
|
||||||
|
|
||||||
|
@ -74,9 +54,6 @@ var server = http.createServer(function (req, res) {
|
||||||
} else if (command == "fixed") {
|
} else if (command == "fixed") {
|
||||||
body = fixed;
|
body = fixed;
|
||||||
|
|
||||||
} else if (command == "info") {
|
|
||||||
body = 'rev=' + rev + '\nuname="' + uname + '"\n';
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
status = 404;
|
status = 404;
|
||||||
body = "not found\n";
|
body = "not found\n";
|
||||||
|
|
Loading…
Reference in New Issue