Are you running cluster forget <nodeId> on all nodes, or only on one node. you need to run it on all the nodes, ,as per
this.
You could execute a shell script by something like
for ip in {127.0.0.1}; do for port in {7001..7003}; do redis-cli -h $ip -p $port CLUSTER FORGET <nodeIdOftheNodeyouwanttoforget>; done; done;