Fix NullPointerException of checking namespace and topic deduplication status.

This commit is contained in:
Yabin Meng 2021-10-06 10:55:32 -05:00
parent 647bd7d430
commit eb5f42f46d

View File

@ -461,7 +461,7 @@ public class ReadyPulsarOp implements OpDispenser<PulsarOp> {
try { try {
nsMsgDedup = pulsarAdmin.namespaces().getDeduplicationStatus(namespace); nsMsgDedup = pulsarAdmin.namespaces().getDeduplicationStatus(namespace);
} }
catch (PulsarAdminException pae) { catch (Exception e) {
// it is fine if we're unable to check namespace level setting; use default // it is fine if we're unable to check namespace level setting; use default
} }
@ -471,7 +471,7 @@ public class ReadyPulsarOp implements OpDispenser<PulsarOp> {
try { try {
topicMsgDedup = pulsarAdmin.topics().getDeduplicationStatus(topic); topicMsgDedup = pulsarAdmin.topics().getDeduplicationStatus(topic);
} }
catch (PulsarAdminException pae) { catch (Exception e) {
// it is fine if we're unable to check topic level setting; use default // it is fine if we're unable to check topic level setting; use default
} }