Skip to content

Commit

Permalink
Un-suppress log information
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessar committed Jul 10, 2017
1 parent a8a9c02 commit 16475ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions etc/start_local_glow_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ trap ctrl_c SIGINT
echo "You may press ctrl-c to kill all started processes..."

go build glow.go
glow master --address="${MASTER_ADDRESS}" &>/dev/null &
glow master --address="${MASTER_ADDRESS}" &
pids+=($!)
echo "Started glow master at ${MASTER_ADDRESS}, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent1" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT1}" &>/dev/null &
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT1}" &
pids+=($!)
echo "Started glow agent, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent2" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT2}" &>/dev/null &
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT2}" &
pids+=($!)
echo "Started glow agent, pid: $!"

glow agent --dir="${GLOW_BASE_DIR}/agent3" --max.executors=5 --memory=500 \
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT3}" &>/dev/null &
--master="${MASTER_ADDRESS}" --port="${AGENT_PORT3}" &
pids+=($!)
echo "Started glow agent, pid: $!"

Expand Down

0 comments on commit 16475ef

Please sign in to comment.