Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arangodb/import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ INPUT_RELATIONS=`pwd`/soc-pokec-relationships-arangodb.txt

if [ "$ARANGODB" == "system" ]; then
ARANGOSH=/usr/bin/arangosh
ARANGOSH_CONF=/etc/arangodb/arangosh.conf
ARANGOSH_CONF=/etc/arangodb3/arangosh.conf
ARANGOIMP=/usr/bin/arangoimp
ARANGOIMP_CONF=/etc/arangodb/arangoimp.conf
ARANGOIMP_CONF=/etc/arangodb3/arangoimp.conf
APATH=.
else
ARANGOSH=./bin/arangosh
Expand Down
4 changes: 2 additions & 2 deletions benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ if (tests.length === 0 || tests === 'all') {
tests = ['warmup', 'shortest', 'neighbors', 'neighbors2', 'singleRead', 'singleWrite',
'singleWriteSync', 'aggregation', 'hardPath', 'neighbors2data'];
}
else {
tests = tests.split(',').map(trim);
else {
tests = tests.split(',').map(function(e){return e.trim();});
}

var database = databases[0];
Expand Down