1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Jan Steemann 2014-05-09 12:18:17 +02:00
commit 931269245d
3 changed files with 3 additions and 1 deletions

View File

@ -135,7 +135,7 @@ PortFinder.prototype.next = function () {
available = testPort("tcp://0.0.0.0:"+this.port);
}
else {
var url = "http" + this.dispatcher.endpoint.substr(3) +
var url = endpointToURL(this.dispatcher.endpoint) +
"/_admin/clusterCheckPort?port="+this.port;
var hdrs = {};
if (this.dispatcher.username !== undefined &&

View File

@ -39,6 +39,7 @@
#include "Scheduler/SchedulerThread.h"
#include "Scheduler/Task.h"
using namespace std;
using namespace triagens::basics;
using namespace triagens::rest;

View File

@ -31,6 +31,7 @@
#include "BasicsC/logging.h"
#include "Scheduler/Scheduler.h"
using namespace std;
using namespace triagens::basics;
using namespace triagens::rest;