Browse Source

rpc-tests: don't spew non-errors to stdout

There's a brief race here, the process might've already exited and cleaned up
after itself. If that's the case, reading from the pidfile will harmlessly
fail. Keep those quiet.
0.10
Cory Fields 10 years ago
parent
commit
005b5af6e2
  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