diff options
Diffstat (limited to 'context')
-rw-r--r-- | context/context-test-utils/src/main/java/org/onap/policy/apex/context/test/utils/ZooKeeperServerServiceProvider.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/context/context-test-utils/src/main/java/org/onap/policy/apex/context/test/utils/ZooKeeperServerServiceProvider.java b/context/context-test-utils/src/main/java/org/onap/policy/apex/context/test/utils/ZooKeeperServerServiceProvider.java index 1c28388ad..1949769a6 100644 --- a/context/context-test-utils/src/main/java/org/onap/policy/apex/context/test/utils/ZooKeeperServerServiceProvider.java +++ b/context/context-test-utils/src/main/java/org/onap/policy/apex/context/test/utils/ZooKeeperServerServiceProvider.java @@ -89,6 +89,7 @@ public class ZooKeeperServerServiceProvider { catch (InterruptedException | IOException ie) { String message = "Zookeeper server start failed"; LOGGER.warn(message, ie); + Thread.currentThread().interrupt(); throw new ApexException(message, ie); } |