From e271acb79cb6f9bc562f71d21a4e1c9b87d01083 Mon Sep 17 00:00:00 2001 From: Jonathan Leibiusky Date: Tue, 11 Feb 2014 12:04:47 -0500 Subject: [PATCH] Fix redis leak when testing --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ddc298a..a5328e2 100644 --- a/Makefile +++ b/Makefile @@ -180,9 +180,9 @@ stop: kill `cat /tmp/sentinel1.pid` kill `cat /tmp/sentinel2.pid` kill `cat /tmp/sentinel3.pid` - #kill `cat /tmp/redis_cluster_node1.pid` || true - #kill `cat /tmp/redis_cluster_node2.pid` || true - #kill `cat /tmp/redis_cluster_node3.pid` || true + kill `cat /tmp/redis_cluster_node1.pid` || true + kill `cat /tmp/redis_cluster_node2.pid` || true + kill `cat /tmp/redis_cluster_node3.pid` || true rm -f /tmp/redis_cluster_node1.conf rm -f /tmp/redis_cluster_node2.conf rm -f /tmp/redis_cluster_node3.conf