mirror of https://github.com/zulip/zulip.git
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:
parent
df36216914
commit
cf15b0b4e6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue