]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
Sentinel: SENTINEL FAILOVER command implemented.
[redis.git] / 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();