diff options
author | dglFromAtt <dgl@research.att.com> | 2018-11-14 08:37:28 -0500 |
---|---|---|
committer | dglFromAtt <dgl@research.att.com> | 2018-11-14 08:37:46 -0500 |
commit | 769839e9e9e891525fdc54ccb75fce897c3af5d2 (patch) | |
tree | d5af4594e9410dfc1800bc758d49a1e6d4055300 /src/main/java | |
parent | 1813f193a734bf77629d9b9bda7ecf6582581569 (diff) |
Fix bug in splitMM logiccasablanca
Change-Id: Ia42f1117758414413b6f4ce9aaef97120927832b
Signed-off-by: dglFromAtt <dgl@research.att.com>
Issue-ID: DMAAP-880
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/org/onap/dmaap/dbcapi/service/MirrorMakerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |