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

Wrap HTTP request processor in separate goroutine #10

Merged
merged 1 commit into from
Jun 30, 2017
Merged
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
22 changes: 12 additions & 10 deletions vape.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,18 @@ func NewVape(client HTTPClient, baseURL *url.URL, resCh chan CheckResult, errCh
// Process takes a list of URIs and concurrently performs a smoke test on each.
func (v Vape) Process(statusCodeChecks StatusCodeChecks) {
// TODO: limit the numer of concurrent requests so we don't DoS the server
for _, check := range statusCodeChecks {
go func(check StatusCodeCheck) {
result, err := v.performCheck(check)
if err != nil {
v.errCh <- err
return
}
v.resCh <- result
}(check)
}
go func() {
for _, check := range statusCodeChecks {
go func(check StatusCodeCheck) {
result, err := v.performCheck(check)
if err != nil {
v.errCh <- err
return
}
v.resCh <- result
}(check)
}
}()
}

// performCheck checks the status code of a HTTP request of a given URI.
Expand Down