Skip to content

Instantly share code, notes, and snippets.

@mstine
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mstine/6c8f672c02b367b3a980 to your computer and use it in GitHub Desktop.
Save mstine/6c8f672c02b367b3a980 to your computer and use it in GitHub Desktop.
Try making FortuneService in fortune-teller-ui look like this:
@HystrixCommand(fallbackMethod = "fallbackFortune", commandProperties = {
@HystrixProperty(name = "circuitBreaker.errorThresholdPercentage", value = "20")
})
public Fortune randomFortune() {
return restTemplate.getForObject("http://fortunes/random", Fortune.class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment