From 314f38cc8aa86d65a664b4f357e3fdea8eede96a Mon Sep 17 00:00:00 2001 From: Parshad Patel Date: Mon, 19 Nov 2018 16:42:49 +0900 Subject: Fix critical issues in dcaegen2-collectors-ves Fix issue related to InterruptedException and equals comparisons between unrelated types Issue-ID: DCAEGEN2-938 Change-Id: Iaef089dfd889053737fa53616064f1a6ef3a929e Signed-off-by: Parshad Patel --- .../onap/dcae/commonFunction/event/publishing/DMaaPPublishersCache.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/org/onap/dcae/commonFunction/event') diff --git a/src/main/java/org/onap/dcae/commonFunction/event/publishing/DMaaPPublishersCache.java b/src/main/java/org/onap/dcae/commonFunction/event/publishing/DMaaPPublishersCache.java index 4cdf92da..c66cee05 100644 --- a/src/main/java/org/onap/dcae/commonFunction/event/publishing/DMaaPPublishersCache.java +++ b/src/main/java/org/onap/dcae/commonFunction/event/publishing/DMaaPPublishersCache.java @@ -99,6 +99,7 @@ class DMaaPPublishersCache { } } catch (InterruptedException | IOException e) { log.error("Could not close Cambria publisher, some messages might have been dropped", e); + Thread.currentThread().interrupt(); } } } -- cgit 1.2.3-korg