applied clang-format

This commit is contained in:
Evan Tschannen 2021-02-03 13:52:54 -08:00
parent b2ffdf47f0
commit bb5352deb0
1 changed files with 2 additions and 2 deletions

View File

@ -685,8 +685,8 @@ public:
}
Future<Void> getQueryDelay() {
if((version.get() - durableVersion.get() > SERVER_KNOBS->LOW_PRIORITY_DURABILITY_LAG) ||
(queueSize() > SERVER_KNOBS->LOW_PRIORITY_STORAGE_QUEUE_BYTES)) {
if ((version.get() - durableVersion.get() > SERVER_KNOBS->LOW_PRIORITY_DURABILITY_LAG) ||
(queueSize() > SERVER_KNOBS->LOW_PRIORITY_STORAGE_QUEUE_BYTES)) {
++counters.lowPriorityQueries;
return delay(0, TaskPriority::BehindReads);
}