Commit 1f164f4e authored by antirez's avatar antirez
Browse files

Fixed comment typo

parent 9f775040
...@@ -95,7 +95,7 @@ void flushAppendOnlyFile(int force) { ...@@ -95,7 +95,7 @@ void flushAppendOnlyFile(int force) {
server.aof_flush_postponed_start = server.unixtime; server.aof_flush_postponed_start = server.unixtime;
return; return;
} else if (server.unixtime - server.aof_flush_postponed_start < 2) { } else if (server.unixtime - server.aof_flush_postponed_start < 2) {
/* We were already writing for fsync to finish, but for less /* We were already waiting for fsync to finish, but for less
* than two seconds this is still ok. Postpone again. */ * than two seconds this is still ok. Postpone again. */
return; return;
} }
......
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