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

Avoid printing metrics as float point numbers #794

Merged
merged 1 commit into from
Feb 4, 2022
Merged

Commits on Feb 4, 2022

  1. Avoid printing metrics as float point numbers

    The metrics in the output was displaying counts as floats instead
    of integers. For example, 15.0 instead of 15. This is due to a
    divide call using '/' instead of '//' which rounds down the answer.
    
    We shouldn't have fractional number results anyway since the counts
    are always divisible by the rank values.
    
    Signed-off-by: Eric Brown <browne@vmware.com>
    ericwb committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    b50f106 View commit details
    Browse the repository at this point in the history