1
0
Fork 0

Remove a print statement.

This commit is contained in:
Max Neunhoeffer 2014-02-03 14:00:14 +01:00
parent 56ef62d5fe
commit 868bf4f0ea
1 changed files with 0 additions and 2 deletions

View File

@ -60,7 +60,6 @@ function dispatch (startupPlan) {
else { else {
myname = startupPlan.myname; myname = startupPlan.myname;
} }
print("dispatcher called, myname is ",myname);
var dispatchers = startupPlan.dispatchers; var dispatchers = startupPlan.dispatchers;
var cmds = startupPlan.commands; var cmds = startupPlan.commands;
var results = []; var results = [];
@ -84,7 +83,6 @@ function dispatch (startupPlan) {
"commands": [cmd], "commands": [cmd],
"myname": cmd.dispatcher }); "myname": cmd.dispatcher });
var url = "http" + ep.substr(3) + "/_admin/dispatch"; var url = "http" + ep.substr(3) + "/_admin/dispatch";
print("sending ",url);
var response = download(url, body, {"method": "post"}); var response = download(url, body, {"method": "post"});
try { try {
if (response.code !== 200) { if (response.code !== 200) {