diff --git a/pageserver/src/tenant/timeline.rs b/pageserver/src/tenant/timeline.rs index 477108ec4c..0d8a5fc800 100644 --- a/pageserver/src/tenant/timeline.rs +++ b/pageserver/src/tenant/timeline.rs @@ -1710,8 +1710,8 @@ impl Timeline { continue 'outer; } - #[allow(unused_labels, clippy::never_loop)] // see comment at bottom of this loop - 'layer_map_search: loop { + #[allow(clippy::never_loop)] // see comment at bottom of this loop + '_layer_map_search: loop { let remote_layer = { let layers = timeline.layers.read().unwrap(); diff --git a/test_runner/fixtures/neon_fixtures.py b/test_runner/fixtures/neon_fixtures.py index bdd3dc004e..f284be8753 100644 --- a/test_runner/fixtures/neon_fixtures.py +++ b/test_runner/fixtures/neon_fixtures.py @@ -1923,7 +1923,7 @@ class NeonPageserver(PgProtocol): ".*kill_and_wait_impl.*: wait successful.*", ".*Replication stream finished: db error: ERROR: Socket IO error: end streaming to Some.*", ".*query handler for 'pagestream.*failed: Broken pipe.*", # pageserver notices compute shut down - ".*query handler for 'pagestream.*failed: Connection reset by peer (os error 104).*", # pageserver notices compute shut down + ".*query handler for 'pagestream.*failed: Connection reset by peer.*", # pageserver notices compute shut down # safekeeper connection can fail with this, in the window between timeline creation # and streaming start ".*Failed to process query for timeline .*: state uninitialized, no data to read.*",