Remove unused actor uuid field

This commit is contained in:
Chocobozzz
2019-05-31 14:02:26 +02:00
parent 4c72c1cd41
commit 57cfff7885
26 changed files with 130 additions and 200 deletions

View File

@@ -17,8 +17,11 @@ removeFiles () {
}
dropRedis () {
redis-cli KEYS "bull-localhost:900$1*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
redis-cli KEYS "redis-localhost:900$1*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
port=$((9000+$1))
redis-cli KEYS "bull-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
redis-cli KEYS "redis-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
redis-cli KEYS "*redis-localhost:$port-" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
}
seq=$(seq 1 6)