diff options
author | Surendra Reddy Katam <SK00524980@techmahindra.com> | 2018-04-04 11:49:18 +0530 |
---|---|---|
committer | Surendra Reddy Katam <SK00524980@techmahindra.com> | 2018-04-04 11:49:18 +0530 |
commit | 3eee9b2080454391a6e4df4cc446f9a4340e3f44 (patch) | |
tree | 2e6e36e76129962237c9f348ba9d01fced61246e /src/main/java/com | |
parent | 04fcb5d8366ec866c1417d1b8063ca4e4aaf5765 (diff) |
Sonar critical issues
Define and throw a dedicated exception instead of using a generic one
Sonar Link:
https://sonar.onap.org/project/issues?assignees=surendraReddy&id=org.onap.dmaap.messagerouter.dmaapclient%3AdmaapClient&open=AV4-MbQa32hFUzlqc5Zc&resolved=false&severities=CRITICAL
Location:
src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java
Line No-78
Change-Id: Idc4d8db66d4f2f9399885f940404d02aaeec35be
Issue-ID: DMAAP-383
Signed-off-by: Surendra Reddy Katam <SK00524980@techmahindra.com>
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java b/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java index eb39e8f..6008251 100644 --- a/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java +++ b/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java @@ -75,7 +75,7 @@ public class MRBatchPublisher implements MRBatchingPublisher try { fSender = new Sender ( baseUrls, topic, maxBatchSize, maxAgeMs, compress ); } catch (MalformedURLException e) { - throw new IllegalArgumentException(e); + throw new IllegalArgumentException (e); } // FIXME: this strategy needs an overhaul -- why not just run a thread that knows how to wait for |