diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-10-14 10:46:58 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-10-14 10:50:22 +0200 |
commit | 2e4f6127bf6e9f01ea5eb0f711b275270c489e9d (patch) | |
tree | 1034e5dee9a8ba8fb20f6e6e3fcf9f8f8dd9f749 | |
parent | 1f27c310a4bcca758f708358601fa25976d56d90 (diff) | |
parent | 005b5af6e2d32cc2a4a37b6edb60aacdfb5e8ed0 (diff) |
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 8c0f114590..37367865c1 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 |