Fix hanging nc and 'invalid wait time' error on Trusty.

Apparently, 0 isn't a supported wait time value in some versions of nc.
This commit is contained in:
acrefoot 2016-06-02 12:57:10 -07:00 committed by Tim Abbott
parent df36216914
commit cf15b0b4e6
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@ set -e
set -x
# Flush memcached
echo 'flush_all' | nc -w 0 localhost 11211
echo 'flush_all' | nc -w 1 localhost 11211