Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created August 16, 2016 08:37
Show Gist options
  • Save jacoelho/8a59adffdb2f837f948e19428aa9bf93 to your computer and use it in GitHub Desktop.
Save jacoelho/8a59adffdb2f837f948e19428aa9bf93 to your computer and use it in GitHub Desktop.
func (c *Circuit) isOpen() bool {
if c.shouldRetry() {
return false
} else {
return c.failuresCounter > c.FailThreshold
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment