Skip to content

Instantly share code, notes, and snippets.

@gavrie
Created May 17, 2016 13:12
Show Gist options
  • Save gavrie/647d802dd9560c90cbb2beaa23293b9a to your computer and use it in GitHub Desktop.
Save gavrie/647d802dd9560c90cbb2beaa23293b9a to your computer and use it in GitHub Desktop.
func (br *basicRetrier) TotalTimeout() (total time.Duration) {
r := *br // Make a copy to preserve unchanged original
for r.virtual.keepTrying() {
total += r.virtual.nextTimeout()
}
log.Printf("Total timeout: %v\n", total)
return total
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment