Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Silence clippy warning with nightly #9157

Merged
merged 1 commit into from
Sep 25, 2024
Merged

Commits on Sep 25, 2024

  1. chore: Silence clippy warning with nightly

    The warning:
    
        warning: first doc comment paragraph is too long
          --> pageserver/src/tenant/checks.rs:7:1
           |
        7  | / /// Checks whether a layer map is valid (i.e., is a valid result of the current compaction algorithm if no...
        8  | | /// The function checks if we can split the LSN range of a delta layer only at the LSNs of the delta layer...
        9  | | ///
        10 | | /// ```plain
           | |_
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
           = note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default
        help: add an empty line
           |
        7  ~ /// Checks whether a layer map is valid (i.e., is a valid result of the current compaction algorithm if nothing goes wrong).
        8  + ///
           |
    
    Fix by applying the suggestion.
    hlinnaka committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    b37d204 View commit details
    Browse the repository at this point in the history