Skip to content

Commit

Permalink
update all logs
Browse files Browse the repository at this point in the history
Signed-off-by: Shivshankar-Reddy <[email protected]>
  • Loading branch information
Shivshankar-Reddy committed Apr 29, 2024
1 parent 54ac594 commit 64095cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aof.c
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ void flushAppendOnlyFile(int force) {
if (ftruncate(server.aof_fd, server.aof_last_incr_size) == -1) {
if (can_log) {
serverLog(LL_WARNING, "Could not remove short write "
"from the append-only file. Server may refuse "
"from the append-only file. The server may refuse "
"to load the AOF the next time it starts. "
"ftruncate: %s", strerror(errno));
}
Expand Down Expand Up @@ -1224,7 +1224,7 @@ void flushAppendOnlyFile(int force) {
* OK state and log the event. */
if (server.aof_last_write_status == C_ERR) {
serverLog(LL_NOTICE,
"AOF write error looks solved, Server can write again.");
"AOF write error looks solved, The server can write again.");
server.aof_last_write_status = C_OK;
}
}
Expand Down

0 comments on commit 64095cf

Please sign in to comment.