diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-05-14 14:25:02 -0400 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-05-14 14:25:02 -0400 |
commit | 8fdf8f00c714471d499c0e9206940f3f2e8a22f3 (patch) | |
tree | 2b16c0337540619f4d8acb85868fa34ff5f7682d /scripts | |
parent | 014fe12c03a2fdcbd2eb6bab39118de1cee02693 (diff) | |
download | mariadb-git-8fdf8f00c714471d499c0e9206940f3f2e8a22f3.tar.gz |
mysql-wsrep#38 : wsrep_sst_xtrabackup-v2 script causes innobackupex to
..print a false positive stack trace into the log
Suppress the stacktrace that innobackupex dumps on receiving SIGPIPE.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/wsrep_sst_xtrabackup-v2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wsrep_sst_xtrabackup-v2.sh b/scripts/wsrep_sst_xtrabackup-v2.sh index 1a191a6ad6b..9af5c758a17 100644 --- a/scripts/wsrep_sst_xtrabackup-v2.sh +++ b/scripts/wsrep_sst_xtrabackup-v2.sh @@ -550,7 +550,7 @@ setup_ports get_stream get_transfer -if ${INNOBACKUPEX_BIN} /tmp --help | grep -q -- '--version-check'; then +if ${INNOBACKUPEX_BIN} /tmp --help | grep -- '--version-check' >/dev/null ; then disver="--no-version-check" fi |