From 769839e9e9e891525fdc54ccb75fce897c3af5d2 Mon Sep 17 00:00:00 2001 From: dglFromAtt Date: Wed, 14 Nov 2018 08:37:28 -0500 Subject: [PATCH] Fix bug in splitMM logic Change-Id: Ia42f1117758414413b6f4ce9aaef97120927832b Signed-off-by: dglFromAtt Issue-ID: DMAAP-880 --- src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java b/src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java index 382e536..da9d822 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java +++ b/src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java @@ -190,7 +190,7 @@ public class MirrorMakerService extends BaseLoggingClass { int last = whitelist.size() - 1; String topic = whitelist.get(last); whitelist.remove(last); - MirrorMaker mm = this.getNextMM( source, target, topic ); + MirrorMaker mm = this.getNextMM( source, target, "aValueThatShouldNotMatchAnything" ); mm.addTopic(topic); this.updateMirrorMaker(mm); } -- 2.16.6