-
Notifications
You must be signed in to change notification settings - Fork 24
Fix scale and correctness defects, add TX(avg) and a per-host throughput breakdown #29
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
Draft
zveinn
wants to merge
2
commits into
main
Choose a base branch
from
fix/scale-correctness
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,44 @@ | ||
| linters-settings: | ||
| golint: | ||
| min-confidence: 0 | ||
|
|
||
| misspell: | ||
| locale: US | ||
| # Migrated to the v2 schema. The previous config was pinned to | ||
| # golangci-lint 1.20.0 and enabled deadcode, structcheck, golint and gosimple, | ||
| # all of which have since been removed or folded into other linters -- so | ||
| # `golangci-lint run` failed outright on any current release and the lint gate | ||
| # documented in CLAUDE.md was never actually running. | ||
| version: "2" | ||
|
|
||
| linters: | ||
| disable-all: true | ||
| default: none | ||
| enable: | ||
| - typecheck | ||
| - goimports | ||
| - misspell | ||
| - govet | ||
| - golint | ||
| - ineffassign | ||
| - gosimple | ||
| - deadcode | ||
| - structcheck | ||
| - misspell | ||
| - staticcheck | ||
| - unused | ||
| # Unchecked writes and closes are how the descriptor and connection leaks | ||
| # in this codebase stayed invisible. | ||
| - bodyclose | ||
| - errorlint | ||
| - unconvert | ||
| - usestdlibvars | ||
|
|
||
| settings: | ||
| misspell: | ||
| locale: US | ||
|
|
||
| exclusions: | ||
| presets: | ||
| - comments | ||
| rules: | ||
| # hperf's error strings are capitalized throughout and surface directly | ||
| # in the CLI output; that is a deliberate house style, not a defect. | ||
| - text: "error strings should not be capitalized" | ||
| linters: | ||
| - staticcheck | ||
|
|
||
| formatters: | ||
| enable: | ||
| - gofmt | ||
| - goimports | ||
|
|
||
| issues: | ||
| exclude-use-default: false | ||
| exclude: | ||
| - should have a package comment | ||
| - error strings should not be capitalized or end with punctuation or a newline | ||
| service: | ||
| golangci-lint-version: 1.20.0 # use the fixed version to not introduce new linters unexpectedly | ||
| max-issues-per-linter: 0 | ||
| max-same-issues: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Fix the shared Markdown spacing violations.
Both documentation files add headings and fenced blocks without the blank lines required by markdownlint.
CLAUDE.md#L23-L32: add blank lines around the test and lint fences and around### Lint.README.md#L215-L216: add spacing around### List and Delete Saved Testsand its fence.README.md#L253-L256: add spacing before the high-frequency latency fence.README.md#L261-L263: add spacing around### Maximum Throughput Testand its fence.README.md#L271-L274: add spacing around### Custom Payload Optimizationand its fence.README.md#L393-L397: add spacing around the troubleshooting headings.🧰 Tools
🪛 markdownlint-cli2 (0.23.2)
[warning] 24-24: Fenced code blocks should be surrounded by blank lines
(MD031, blanks-around-fences)
[warning] 29-29: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below
(MD022, blanks-around-headings)
[warning] 30-30: Fenced code blocks should be surrounded by blank lines
(MD031, blanks-around-fences)
[warning] 32-32: Fenced code blocks should be surrounded by blank lines
(MD031, blanks-around-fences)
📍 Affects 2 files
CLAUDE.md#L23-L32(this comment)README.md#L215-L216README.md#L253-L256README.md#L261-L263README.md#L271-L274README.md#L393-L397🤖 Prompt for AI Agents
Source: Linters/SAST tools