diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-14 10:46:58 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-14 10:50:22 +0200 |
| commit | 2e4f6127bf6e9f01ea5eb0f711b275270c489e9d (patch) | |
| tree | 1034e5dee9a8ba8fb20f6e6e3fcf9f8f8dd9f749 | |
| parent | Merge pull request #5080 (diff) | |
| parent | rpc-tests: don't spew non-errors to stdout (diff) | |
| download | discoin-2e4f6127bf6e9f01ea5eb0f711b275270c489e9d.tar.xz discoin-2e4f6127bf6e9f01ea5eb0f711b275270c489e9d.zip | |
Merge pull request #5074
005b5af rpc-tests: don't spew non-errors to stdout (Cory Fields)
| -rwxr-xr-x | qa/rpc-tests/send.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/send.sh b/qa/rpc-tests/send.sh index 8c0f11459..37367865c 100755 --- a/qa/rpc-tests/send.sh +++ b/qa/rpc-tests/send.sh @@ -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 |