From 22a4b28d36f7583b621aa0213b3e9533b45e8c5c Mon Sep 17 00:00:00 2001 From: gschwab Date: Tue, 28 Oct 2014 14:09:33 +0100 Subject: [PATCH 1/2] small doku changed for /_api/gharial/g/edge/e?dropCollection=true --- js/apps/system/gharial/gharial.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/apps/system/gharial/gharial.js b/js/apps/system/gharial/gharial.js index c634218f56..9d417813f9 100644 --- a/js/apps/system/gharial/gharial.js +++ b/js/apps/system/gharial/gharial.js @@ -447,6 +447,8 @@ * This has to contain the vertex-collection name. */ controller.post("/:graph/vertex", function(req, res) { + require("console").log("+++++++++++++++++++++++++"); + require("console").log(req); var name = req.params("graph"); var body = req.params("collection"); var g; @@ -751,7 +753,7 @@ /** Delete an edge definition. * * Removes an existing edge definition from this graph. - * All data stored in the collections is dropped as well as long + * All data stored in the edge collection is dropped as well as long * as it is not used in other graphs. */ controller.del("/:graph/edge/:definition", function(req, res) { From 93c8a4460558acd28c363d6e221670eaf52c7060 Mon Sep 17 00:00:00 2001 From: Willi Goesgens Date: Tue, 28 Oct 2014 14:42:25 +0100 Subject: [PATCH 2/2] switch the temp-directory to /var/tmp/ --- scripts/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run b/scripts/run index d996dfff5b..9adbf1a0d3 100755 --- a/scripts/run +++ b/scripts/run @@ -21,5 +21,5 @@ for i in "$@"; do done echo Database has its data in data-$PID echo Logfile is in log-$PID -$VG bin/arangod --configuration none --cluster.agent-path bin/etcd-arango --cluster.arangod-path bin/arangod --cluster.coordinator-config etc/relative/arangod-coordinator.conf --cluster.dbserver-config etc/relative/arangod-dbserver.conf --cluster.disable-dispatcher-frontend false --cluster.disable-dispatcher-kickstarter false --cluster.data-path cluster --cluster.log-path cluster --database.directory data-$PID --log.file log-$PID --server.endpoint tcp://localhost:$PORT --javascript.startup-directory js --javascript.app-path js/apps --javascript.script $SCRIPT --ruby.action-directory mr/actions/system --ruby.modules-path "mr/server/modules;mr/common/modules" "${ARGS[@]}" $VXML +$VG bin/arangod --configuration none --cluster.agent-path bin/etcd-arango --cluster.arangod-path bin/arangod --cluster.coordinator-config etc/relative/arangod-coordinator.conf --cluster.dbserver-config etc/relative/arangod-dbserver.conf --cluster.disable-dispatcher-frontend false --cluster.disable-dispatcher-kickstarter false --cluster.data-path cluster --cluster.log-path cluster --database.directory data-$PID --log.file log-$PID --server.endpoint tcp://localhost:$PORT --javascript.startup-directory js --javascript.app-path js/apps --javascript.script $SCRIPT --ruby.action-directory mr/actions/system --ruby.modules-path "mr/server/modules;mr/common/modules" "${ARGS[@]}" --temp-path /var/tmp/ $VXML echo Server has terminated.