Browse Source

Merge pull request #5074

005b5af rpc-tests: don't spew non-errors to stdout (Cory Fields)
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
2e4f6127bf
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      qa/rpc-tests/send.sh

2
qa/rpc-tests/send.sh

@ -16,7 +16,7 @@ fi @@ -16,7 +16,7 @@ fi
if [ $1 = "-STOP" ]; then
if [ -s ${PIDFILE} ]; then
kill -s ${SIGNAL} $(<${PIDFILE})
kill -s ${SIGNAL} $(<$PIDFILE 2>/dev/null) 2>/dev/null
fi
exit 0
fi

Loading…
Cancel
Save