Skip to content

Instantly share code, notes, and snippets.

@deepakmehra10
Created June 22, 2020 21:34
Show Gist options
  • Select an option

  • Save deepakmehra10/eeb7ca7839833bba090b39ac21d753d9 to your computer and use it in GitHub Desktop.

Select an option

Save deepakmehra10/eeb7ca7839833bba090b39ac21d753d9 to your computer and use it in GitHub Desktop.
// Failure
@GetMapping("failure/users")
@CircuitBreaker(name = USER_SERVICE)
public Mono<ResponseEntity> getUserWithFailure() {
// This will cause the circuit breaker to go in an open state.
return Mono.error(new TimeoutException("Timeout exception occurred."));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment