From 688ca36ee51950917974031bd52fe13aa997ac53 Mon Sep 17 00:00:00 2001 From: Michael Mokry Date: Thu, 1 Mar 2018 13:35:37 -0600 Subject: [PATCH] Adding fix for BRMSGW issue This should fix the issue with the BRMSGW getting notification to create the rules jar Change-Id: Ie575a0b4717c999b8ab9deecc667ceaba99e7327 Issue-ID: POLICY-660 Signed-off-by: Michael Mokry --- PolicyEngineAPI/src/main/java/org/onap/policy/std/AutoClientEnd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/std/AutoClientEnd.java b/PolicyEngineAPI/src/main/java/org/onap/policy/std/AutoClientEnd.java index ec021a43e..542314990 100644 --- a/PolicyEngineAPI/src/main/java/org/onap/policy/std/AutoClientEnd.java +++ b/PolicyEngineAPI/src/main/java/org/onap/policy/std/AutoClientEnd.java @@ -84,7 +84,7 @@ public class AutoClientEnd { if (scheme == null || handler == null || ! (scheme.equals(NotificationScheme.AUTO_ALL_NOTIFICATIONS) && scheme.equals(NotificationScheme.AUTO_NOTIFICATIONS) ) || - AutoClientEnd.client == null) { + AutoClientEnd.client != null) { return; } -- 2.16.6