Skip to content

Commit

Permalink
Update src/server/server.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Myth <caipengbo@outlook.com>
  • Loading branch information
PragmaTwice and caipengbo committed May 16, 2024
1 parent f715076 commit c695aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ void Server::cron() {
if (counter != 0 && counter % 600 == 0 && storage->IsDBInRetryableIOError()) {
rocksdb::Status status = storage->GetDB()->Resume();
if (status.ok()) {
LOG(WARNING) << "[server] Successfully resumed DB after retryable IO error.";
LOG(WARNING) << "[server] Successfully resumed DB after retryable IO error";
storage->SetDBInRetryableIOError(false);
} else {
LOG(ERROR) << "[server] Failed to resume DB after retryable IO error: " << status.ToString();
Expand Down

0 comments on commit c695aa5

Please sign in to comment.