From 5a547b27f7e4a12ac6ecd4e0b7f7c25841018deb Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 7 Apr 2011 23:23:27 +0200 Subject: [PATCH] evaluate cluster state after config load. Still bugs in the slot allocation after nodes config load to fix. --- src/cluster.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cluster.c b/src/cluster.c index 6a693d6e..2ea1b9cb 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -134,6 +134,7 @@ int clusterLoadConfig(char *filename) { redisAssert(server.cluster.myself != NULL); redisLog(REDIS_NOTICE,"Node configuration loaded, I'm %.40s", server.cluster.myself->name); + clusterUpdateState(); return REDIS_OK; fmterr: -- 2.47.2