Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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