diff --git a/.travis.yml b/.travis.yml index 7b1001a4b7..99ccb27da9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,3 +48,11 @@ before_script: "bash -c Installation/travisCI/before_script.sh" script: - "bash -c Installation/travisCI/build.sh" after_failure: "bash -c Installation/travisCI/after_failure.sh" + +notifications: + webhooks: + urls: + - https://webhooks.gitter.im/e/806d92fa9ae97d241599 + on_success: change + on_failure: always + on_start: false \ No newline at end of file diff --git a/Documentation/Books/Users/SUMMARY.md b/Documentation/Books/Users/SUMMARY.md index f634d533aa..56732b0383 100644 --- a/Documentation/Books/Users/SUMMARY.md +++ b/Documentation/Books/Users/SUMMARY.md @@ -108,7 +108,7 @@ * [Debugging](Foxx/Develop/Debugging.md) * [Source Files](Foxx/Develop/Folder.md) * [Controller](Foxx/Develop/Controller.md) - * [Setup & Teardown](Foxx/Develop/Scripts.md) + * [Scripts](Foxx/Develop/Scripts.md) * [Repository](Foxx/Develop/Repository.md) * [Model](Foxx/Develop/Model.md) * [Queries](Foxx/Develop/Queries.md) diff --git a/js/server/modules/org/arangodb/foxx/queues/manager.js b/js/server/modules/org/arangodb/foxx/queues/manager.js index 1e89d92734..9e0aa5faf4 100644 --- a/js/server/modules/org/arangodb/foxx/queues/manager.js +++ b/js/server/modules/org/arangodb/foxx/queues/manager.js @@ -135,7 +135,6 @@ exports.manage = function () { exports.run = function () { var options = require('internal').options(); - // disable foxx queues if (options['server.foxx-queues'] === false) { return; @@ -164,7 +163,7 @@ exports.run = function () { db._useDatabase(initialDatabase); return tasks.register({ - command: function (params) { + command: function () { require('org/arangodb/foxx/queues/manager').manage(); }, period: period,