Sleep 10 seconds between writes to DB

This commit is contained in:
Grant Limberg 2020-08-21 16:22:28 -07:00
parent 5b700fa497
commit 7f99c4a779
No known key found for this signature in database
GPG Key ID: 2BA62CCABBB4095A

View File

@ -1714,7 +1714,7 @@ void PostgreSQL::onlineNotification_Redis()
fprintf(stderr, "Error in online notification thread (redis): %s\n", e.what());
#endif
}
std::this_thread::sleep_for(std::chrono::milliseconds(100));
std::this_thread::sleep_for(std::chrono::seconds(10));
}
}