mirror of https://gitee.com/bigwinds/arangodb
Remove a print statement.
This commit is contained in:
parent
56ef62d5fe
commit
868bf4f0ea
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue