Commit c0bbd15
Fix no-op memcached cache flush in restore.sh
The post-restore cleanup ran 'echo echo "flush_all" | nc ... memcached',
which sends the literal string 'echo flush_all' to memcached. That is not a
valid command, so memcached replies ERROR and the cache is never flushed.
Drop the duplicated echo so the intended 'flush_all' command is sent.1 parent e2c6309 commit c0bbd15
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
0 commit comments