Skip to content

Commit f2fd163

Browse files
committed
store: Rename 'queue_wait' section to 'queue_idle'
1 parent 1030bec commit f2fd163

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

store/postgres/src/writable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ impl Queue {
999999
// add to it again.
10001000
if queue.batch_writes() && queue.queue.len() <= 1 {
10011001
loop {
1002-
let _section = queue.stopwatch.start_section("queue_wait");
1002+
let _section = queue.stopwatch.start_section("queue_idle");
10031003
let req = queue.queue.peek().await;
10041004

10051005
// When this is true, push_write would never add to
@@ -1030,7 +1030,7 @@ impl Queue {
10301030
// the write transaction commits, causing them to return
10311031
// incorrect results.
10321032
let req = {
1033-
let _section = queue.stopwatch.start_section("queue_wait");
1033+
let _section = queue.stopwatch.start_section("queue_idle");
10341034
// Mark the request as being processed so push_write
10351035
// will not modify it again, even after we are done with
10361036
// it here

0 commit comments

Comments
 (0)