Skip to content

Commit

Permalink
Merge pull request #2762 from phillip-kruger/space_in_circuit_breaker…
Browse files Browse the repository at this point in the history
…_exception

Added a space in the exception message of CircuitBreakerOpenException
  • Loading branch information
arjantijms authored May 28, 2018
2 parents 38151bb + 7bc4c9d commit 91e45e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ private Object circuitBreak(InvocationContext invocationContext) throws Exceptio

// If open, immediately throw an error
throw new CircuitBreakerOpenException("CircuitBreaker for method "
+ invocationContext.getMethod().getName() + "is in state OPEN.");
+ invocationContext.getMethod().getName() + " is in state OPEN.");
case CLOSED:
// If closed, attempt to proceed the invocation context
try {
Expand Down

0 comments on commit 91e45e4

Please sign in to comment.