Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clippy warning on macOS (#10282)
## Problem On macOS: ``` error: unused variable: `disable_lfc_resizing` --> compute_tools/src/bin/compute_ctl.rs:431:9 | 431 | disable_lfc_resizing, | ^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `disable_lfc_resizing: _` | = note: `-D unused-variables` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_variables)]` ``` ## Summary of changes - Initialise `disable_lfc_resizing` only on Linux (because it's used on Linux only in further bloc)
- Loading branch information
02f81b6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7377 tests run: 7014 passed, 1 failed, 362 skipped (full report)
Failures on Postgres 16
test_storage_controller_many_tenants[github-actions-selfhosted]
: release-x86-64Flaky tests (3)
Postgres 17
test_compute_pageserver_connection_stress
: debug-x86-64Postgres 16
test_physical_replication_config_mismatch_max_locks_per_transaction
: release-x86-64Postgres 14
test_physical_replication_config_mismatch_max_locks_per_transaction
: release-x86-64Code coverage* (full report)
functions
:31.2% (8410 of 26962 functions)
lines
:48.0% (66787 of 139234 lines)
* collected from Rust tests only
02f81b6 at 2025-01-06T22:30:38.975Z :recycle: