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

fix some typos #1244

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Distributed-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ In case if you are planning a large load testing, you may consider use separate
gor --input-file logs_from_multiple_machines.*|1000% --input-file-loop --exit-after 30s --recognize-tcp-sessions --split-output --output-tcp worker1.local --output-tcp worker2.local:27017 --output-tcp worker3.local:27017 ... --output-tcp workerN.local:27017

# worker
gor --input-tcp :27017 --ouput-http load_test.target
gor --input-tcp :27017 --output-http load_test.target
```
2 changes: 1 addition & 1 deletion internal/tcp/tcp_message.go
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ func (parser *MessageParser) Fix100Continue(m *Message) {
p.Ack += 25
}

// If next section was aready approved and received, merge messages
// If next section was already approved and received, merge messages
if next, found := parser.m[m.packets[0].MessageID()]; found {
for _, p := range next.packets {
parser.addPacket(m, p)
Expand Down