1
0
Fork 0

startLocalCluster in rr debugging mode cannot be started with --console on agents / db servers (#7776)

This commit is contained in:
Kaveh Vahedipour 2018-12-16 16:25:55 +01:00 committed by Max Neunhöffer
parent 43dbe065d5
commit 94784e5639
1 changed files with 3 additions and 3 deletions

View File

@ -120,11 +120,11 @@ fi
if [ ! -z "$INTERACTIVE_MODE" ] ; then
if [ "$INTERACTIVE_MODE" == "C" ] ; then
ARANGOD="${BUILD}/bin/arangod "
CO_ARANGOD="$XTERM $XTERMOPTIONS ${BUILD}/bin/arangod --console "
CO_ARANGOD="$XTERM $XTERMOPTIONS ${BUILD}/bin/arangod --console"
echo "Starting one coordinator in terminal with --console"
elif [ "$INTERACTIVE_MODE" == "R" ] ; then
ARANGOD="$XTERM $XTERMOPTIONS rr ${BUILD}/bin/arangod --console "
CO_ARANGOD=$ARANGOD
ARANGOD="$XTERM $XTERMOPTIONS rr ${BUILD}/bin/arangod"
CO_ARANGOD="$ARANGOD --console"
echo Running cluster in rr with --console.
fi
else