XACML junit spews dmaap errors 44/94244/1
authorJim Hahn <jrh3@att.com>
Fri, 23 Aug 2019 22:40:54 +0000 (18:40 -0400)
committerJim Hahn <jrh3@att.com>
Fri, 23 Aug 2019 22:40:54 +0000 (18:40 -0400)
Modified junit parameters to specify "noop" instead of "dmaap"
in the topic properties, eliminating the dmaap error messages
from the log.

Change-Id: I350d988d10219e6ded2c011a4ed117fd5e71876a
Issue-ID: POLICY-1725
Signed-off-by: Jim Hahn <jrh3@att.com>
main/src/test/java/org/onap/policy/pdpx/main/parameters/CommonTestData.java

index 24bf48f..fd79035 100644 (file)
@@ -56,7 +56,7 @@ public class CommonTestData {
     public static TopicParameters getTopicParams() {
         final TopicParameters topicParams = new TopicParameters();
         topicParams.setTopic("POLICY-PDP-PAP");
-        topicParams.setTopicCommInfrastructure("dmaap");
+        topicParams.setTopicCommInfrastructure("noop");
         topicParams.setServers(Arrays.asList("message-router"));
         return topicParams;
     }