MR_ClusterService-replace & with && 40/75440/1
authorDriptaroop Das <driptaroop.das@in.ibm.com>
Tue, 8 Jan 2019 09:17:13 +0000 (14:47 +0530)
committerDriptaroop Das <driptaroop.das@in.ibm.com>
Tue, 8 Jan 2019 09:17:19 +0000 (14:47 +0530)
Replaced & with the correct comparsion operator && in MR_ClusterService.java

Issue-ID: DMAAP-943
Change-Id: Idaaa4f9ad3e1961e05d2a9f07de466d5f738417e
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
src/main/java/org/onap/dmaap/dbcapi/service/MR_ClusterService.java

index dea5d83..db6389e 100644 (file)
@@ -3,6 +3,8 @@
  * org.onap.dmaap
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ *
+ * Modifications Copyright (C) 2019 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -156,7 +158,7 @@ public class MR_ClusterService extends BaseLoggingClass {
                        cluster.setLastMod();
                        cluster.setStatus(DmaapObject_Status.INVALID);
                        mr_clusters.put( cluster.getDcaeLocationName(), cluster );
-               } else if ( loc.isCentral()  & multiSite ) {
+               } else if ( loc.isCentral() && multiSite ) {
                        ApiError resp = TopicService.setBridgeClientPerms( cluster );
                        if ( ! resp.is2xx() ) {
                                logger.error( "Unable to provision Bridge to " + cluster.getDcaeLocationName() );