We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae0b9a commit 1f62110Copy full SHA for 1f62110
scripts/functions.sh
@@ -6,7 +6,7 @@ if [[ "$TRAVIS" == true ]]; then
6
fi
7
8
function quit {
9
- echo "Shutting down Dgraph server and zero."
+ echo "Shutting down Dgraph alpha and zero."
10
curl -s localhost:8080/admin/shutdown
11
# Kill Dgraph zero.
12
kill -9 $(pgrep -f "dgraph zero") > /dev/null
@@ -25,8 +25,8 @@ function quit {
25
}
26
27
function start {
28
- echo -e "Starting first server."
29
- dgraph server -p data/p -w data/w --lru_mb 4096 --zero localhost:5080 > data/server.log 2>&1 &
+ echo -e "Starting Dgraph alpha."
+ dgraph alpha -p data/p -w data/w --lru_mb 4096 --zero localhost:5080 > data/server.log 2>&1 &
30
# Wait for membership sync to happen.
31
sleep $sleepTime
32
return 0
0 commit comments