You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/07/20 07:51:20 UTC

[GitHub] [pulsar] k2la commented on a diff in pull request #16678: [pulsar-client] Get GettingAuthenticationDataException on Authentication Failure

k2la commented on code in PR #16678:
URL: https://github.com/apache/pulsar/pull/16678#discussion_r925287789


##########
pulsar-client/src/main/java/org/apache/pulsar/client/impl/PulsarChannelInitializer.java:
##########
@@ -127,6 +127,12 @@ public PulsarChannelInitializer(ClientConfigurationData conf, Supplier<ClientCnx
                                 conf.getTlsCiphers(),
                                 conf.getTlsProtocols());
                     }
+                } catch (PulsarClientException pulsarClientException) {
+                    try {
+                        throw pulsarClientException;
+                    } catch (Exception e) {
+                        throw new RuntimeException(e);
+                    }

Review Comment:
   I fixed that.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org