Mercurial > hg > orthanc
changeset 4619:fda80844b920 db-changes
separate db retries by 100ms instead of 50ms to simplify documentation
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 14 Apr 2021 14:02:21 +0200 |
parents | 6c4081ae3bb8 |
children | 82dbe45c947a |
files | OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp Wed Apr 14 12:15:19 2021 +0200 +++ b/OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp Wed Apr 14 14:02:21 2021 +0200 @@ -649,7 +649,7 @@ attempt++; // The "rand()" adds some jitter to de-synchronize writers - boost::this_thread::sleep(boost::posix_time::milliseconds(50 * attempt + 5 * (rand() % 10))); + boost::this_thread::sleep(boost::posix_time::milliseconds(100 * attempt + 5 * (rand() % 10))); } } else