Skip to content

Commit

Permalink
#2382: ccm-lb: reduce sleep to 1ms
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Dec 23, 2024
1 parent dc55d2c commit e7bd01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/temperedlb/temperedlb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2592,7 +2592,7 @@ void TemperedLB::satisfyLockRequest() {
try_locks_.erase(iter);

if (lock.forced_release) {
std::this_thread::sleep_for(std::chrono::milliseconds(5));
std::this_thread::sleep_for(std::chrono::milliseconds(1));
lock.forced_release = false;
try_locks_.insert(lock);
return;
Expand Down

0 comments on commit e7bd01a

Please sign in to comment.