Skip to content

Commit

Permalink
create-cluster clean now will clean appendonlydir
Browse files Browse the repository at this point in the history
In redis#9788, now we stores all persistent append-only files in
a dedicated directory. The name of the directory is determined
by the appenddirname configuration parameter in redis.conf

Update create-cluster clean to clean this default directory.
Fixes redis#10222
  • Loading branch information
enjoy-binbin committed Feb 1, 2022
1 parent 6b5b3ca commit b783809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/create-cluster/create-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ fi
if [ "$1" == "clean" ]
then
rm -rf *.log
rm -rf appendonly*.aof
rm -rf dump*.rdb
rm -rf nodes*.conf
rm -rf appendonlydir
exit 0
fi

Expand Down

0 comments on commit b783809

Please sign in to comment.