Fix CDS actor properties 14/106114/2
authorJim Hahn <jrh3@att.com>
Thu, 16 Apr 2020 16:46:50 +0000 (12:46 -0400)
committerJim Hahn <jrh3@att.com>
Thu, 16 Apr 2020 17:16:42 +0000 (13:16 -0400)
CDS actor properties in drools-apps did not match the properties
in the actor, itself.  Fixed them (as best I could be inspection).

Issue-ID: POLICY-2501
Change-Id: Ibb4ac5ee59762bd740342c1d54fc472a9fca8968
Signed-off-by: Jim Hahn <jrh3@att.com>
controlloop/common/controller-frankfurt/src/test/resources/config/event-manager.properties
controlloop/common/feature-controlloop-management/src/main/feature/config/event-manager.properties
pom.xml

index 384346e..e4c8fdc 100644 (file)
@@ -51,13 +51,11 @@ actor.service.APPC.operations.Rebuild.placeholder=
 actor.service.APPC.operations.ModifyConfig.sinkTopic=APPC-CL
 actor.service.APPC.operations.ModifyConfig.sourceTopic=APPC-CL
 
-actor.service.CDS.clientName=CDS
-actor.service.CDS.grpcHost=localhost
-actor.service.CDS.grpcPort=7878
-actor.service.CDS.grpcUsername=grpc-username
-actor.service.CDS.grpcPassword=grpc-password
-actor.service.CDS.grpcTimeout=10
-actor.service.CDS.operations.xxx.yyy=
+actor.service.CDS.gRPC.host=localhost
+actor.service.CDS.gRPC.port=7878
+actor.service.CDS.gRPC.username=grpc-username
+actor.service.CDS.gRPC.password=grpc-password
+actor.service.CDS.gRPC.timeout=10
 
 actor.service.SDNC.clientName=SDNC
 actor.service.SDNC.operations.BandwidthOnDemand.path=\
index 8d770d7..5774a31 100644 (file)
@@ -52,13 +52,11 @@ actor.service.APPC.operations.Rebuild.placeholder=
 actor.service.APPC.operations.ModifyConfig.sinkTopic=APPC-CL
 actor.service.APPC.operations.ModifyConfig.sourceTopic=APPC-CL
 
-actor.service.CDS.clientName=CDS
-actor.service.CDS.grpcHost=${envd:CDS_GRPC_HOST:}
-actor.service.CDS.grpcPort=${envd:CDS_GRPC_PORT:}
-actor.service.CDS.grpcUsername=${envd:CDS_GRPC_USERNAME:}
-actor.service.CDS.grpcPassword=${envd:CDS_GRPC_PASSWORD:}
-actor.service.CDS.grpcTimeout=10
-actor.service.CDS.operations.gRPC.placeholder=
+actor.service.CDS.gRPC.host=${envd:CDS_GRPC_HOST:}
+actor.service.CDS.gRPC.port=${envd:CDS_GRPC_PORT:}
+actor.service.CDS.gRPC.username=${envd:CDS_GRPC_USERNAME:}
+actor.service.CDS.gRPC.password=${envd:CDS_GRPC_PASSWORD:}
+actor.service.CDS.gRPC.timeout=10
 
 actor.service.SDNC.clientName=SDNC
 actor.service.SDNC.operations.BandwidthOnDemand.path=\
diff --git a/pom.xml b/pom.xml
index 6a0085d..c17ed34 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -46,7 +46,7 @@
 
         <!-- Project common dependency versions -->
         <version.policy.common>1.6.4</version.policy.common>
-        <policy.models.version>2.2.4</policy.models.version>
+        <policy.models.version>2.2.5-SNAPSHOT</policy.models.version>
         <version.policy.drools-pdp>1.6.1</version.policy.drools-pdp>
     </properties>