From 7bc4c9d579468192d33f5b40be6ed0fb4eb6ee26 Mon Sep 17 00:00:00 2001 From: Phillip Kruger Date: Thu, 24 May 2018 08:38:38 +0200 Subject: [PATCH] Added a space in the exception message --- .../faulttolerance/interceptors/CircuitBreakerInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appserver/payara-appserver-modules/microprofile/fault-tolerance/src/main/java/fish/payara/microprofile/faulttolerance/interceptors/CircuitBreakerInterceptor.java b/appserver/payara-appserver-modules/microprofile/fault-tolerance/src/main/java/fish/payara/microprofile/faulttolerance/interceptors/CircuitBreakerInterceptor.java index 868b9a8e960..5af194624e3 100644 --- a/appserver/payara-appserver-modules/microprofile/fault-tolerance/src/main/java/fish/payara/microprofile/faulttolerance/interceptors/CircuitBreakerInterceptor.java +++ b/appserver/payara-appserver-modules/microprofile/fault-tolerance/src/main/java/fish/payara/microprofile/faulttolerance/interceptors/CircuitBreakerInterceptor.java @@ -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 {