]> git.saurik.com Git - redis.git/commitdiff
Fix warning in redis.c for sentinel config load
authormrb <michaelrbernstein@gmail.com>
Wed, 25 Jul 2012 13:55:53 +0000 (09:55 -0400)
committerantirez <antirez@gmail.com>
Thu, 27 Sep 2012 11:04:37 +0000 (13:04 +0200)
src/redis.c

index 8dc0e0ebb1c41987a965ad9912f291b1276a78c8..432f6196b4fe6d6c699dc38e40022b2a7eb04939 100644 (file)
@@ -2559,7 +2559,7 @@ int main(int argc, char **argv) {
         loadServerConfig(configfile,options);
         sdsfree(options);
     } else {
-        redisLog(REDIS_WARNING,"Warning: no config file specified, using the default config. In order to specify a config file use 'redis-server /path/to/redis.conf'");
+        redisLog(REDIS_WARNING, "Warning: no config file specified, using the default config. In order to specify a config file use %s /path/to/%s.conf", argv[0], server.sentinel_mode ? "sentinel" : "redis");
     }
     if (server.daemonize) daemonize();
     initServer();