Disable aleth log output again on the CI

This commit is contained in:
Mathias Baumann 2019-04-04 16:16:31 +02:00
parent a83e54cfd3
commit 977c7d333e

View File

@ -152,7 +152,9 @@ function download_aleth()
# echos the PID # echos the PID
function run_aleth() function run_aleth()
{ {
$REPO_ROOT/scripts/aleth_with_log.sh $ALETH_PATH $ALETH_TMP_OUT --log-verbosity 3 --db memorydb --test -d "${WORKDIR}" &> /dev/null & # Use this to have aleth log output
#$REPO_ROOT/scripts/aleth_with_log.sh $ALETH_PATH $ALETH_TMP_OUT --log-verbosity 3 --db memorydb --test -d "${WORKDIR}" &> /dev/null &
$ALETH_PATH --db memorydb --test -d "${WORKDIR}" &> /dev/null &
echo $! echo $!
# Wait until the IPC endpoint is available. # Wait until the IPC endpoint is available.
while [ ! -S "${WORKDIR}/geth.ipc" ] ; do sleep 1; done while [ ! -S "${WORKDIR}/geth.ipc" ] ; do sleep 1; done