Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created August 16, 2016 08:36
Show Gist options
  • Save jacoelho/245b14a0b08f7431f717c2ed872c1adc to your computer and use it in GitHub Desktop.
Save jacoelho/245b14a0b08f7431f717c2ed872c1adc to your computer and use it in GitHub Desktop.
func (c *Circuit) shouldRetry() bool {
if c.retriesCounter > c.RetryThreshold {
c.retriesCounter = 0
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment