Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Increases the timeout for waiting for a plugin response from 3 to 5 s…
Browse files Browse the repository at this point in the history
…econds
  • Loading branch information
jcooklin committed Nov 13, 2015
1 parent a722e3e commit 96dd28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func (r *runner) startPlugin(p executablePlugin) (*availablePlugin, error) {
}

// Wait for plugin response
resp, err := p.WaitForResponse(time.Second * 3)
resp, err := p.WaitForResponse(time.Second * 5)
if err != nil {
e := errors.New("error while waiting for response: " + err.Error())
runnerLog.WithFields(log.Fields{
Expand Down

0 comments on commit 96dd28f

Please sign in to comment.