Skip to content

Commit

Permalink
Increase varnishstat timeout (#5130)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarsten authored and danielnelson committed Dec 12, 2018
1 parent 4d026fc commit d954218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/inputs/varnish/varnish.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func varnishRunner(cmdName string, UseSudo bool, InstanceName string) (*bytes.Bu

var out bytes.Buffer
cmd.Stdout = &out
err := internal.RunTimeout(cmd, time.Millisecond*200)
err := internal.RunTimeout(cmd, time.Millisecond*500)
if err != nil {
return &out, fmt.Errorf("error running varnishstat: %s", err)
}
Expand Down

0 comments on commit d954218

Please sign in to comment.