Commit 31a70a8b authored by Itamar Haber's avatar Itamar Haber
Browse files

Fixes a typo

parent 68e779f3
......@@ -3866,7 +3866,7 @@ int redisSupervisedUpstart(void) {
return 0;
}
serverLog(LL_NOTICE, "supervised by upstart, will stop to signal readyness");
serverLog(LL_NOTICE, "supervised by upstart, will stop to signal readiness");
raise(SIGSTOP);
unsetenv("UPSTART_JOB");
return 1;
......@@ -3890,7 +3890,7 @@ int redisSupervisedSystemd(void) {
return 0;
}
serverLog(LL_NOTICE, "supervised by systemd, will signal readyness");
serverLog(LL_NOTICE, "supervised by systemd, will signal readiness");
if ((fd = socket(AF_UNIX, SOCK_DGRAM, 0)) == -1) {
serverLog(LL_WARNING,
"Can't connect to systemd socket %s", notify_socket);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment