mirror of https://gitee.com/bigwinds/arangodb
removed tabs
This commit is contained in:
parent
37f81ee9d6
commit
ee8fe74a8a
|
@ -32,11 +32,16 @@ module.define("org/arangodb/graph", function(exports, module) {
|
|||
|
||||
var gp = require("org/arangodb/graph-blueprint");
|
||||
|
||||
gp.forEach(function(x) {
|
||||
|
||||
require("console").warn('module "graph" is deprecated, please use ' +
|
||||
'module "general-graph" instead');
|
||||
|
||||
Object.keys(gp).forEach(function (m) {
|
||||
exports[m] = gp[m];
|
||||
});
|
||||
|
||||
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- END-OF-FILE
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
|
@ -36,7 +36,7 @@ require("console").warn('module "graph" is deprecated, please use ' +
|
|||
'module "general-graph" instead');
|
||||
|
||||
Object.keys(gp).forEach(function (m) {
|
||||
exports[m] = gp[m];
|
||||
exports[m] = gp[m];
|
||||
});
|
||||
|
||||
|
||||
|
|
|
@ -952,7 +952,7 @@ Kickstarter.prototype.isHealthy = function() {
|
|||
res = JSON.parse(response.body);
|
||||
results.push(res.results[0]);
|
||||
if (res.results[0].error === true) {
|
||||
error = true;
|
||||
error = true;
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
|
|
Loading…
Reference in New Issue