|
|
+
Jordan Zimmerman 2012-05-17, 07:23
-
Re: SaslAuthenticatedJordan Zimmerman 2012-05-17, 16:50
Never mind - https://issues.apache.org/jira/browse/ZOOKEEPER-1437 fixes the issue
From: Netflix <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> Date: Thu, 17 May 2012 00:23:08 -0700 To: <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> Subject: SaslAuthenticated When using SASL authentication, waiting for SysConnected isn't enough. Clients need to wait for SaslAuthenticated as well before calling ZK methods. Is there a way for a library such as Curator to know that SASL is enabled so that it can know that it needs to wait for SaslAuthenticated? I thought about duplicating the code in ZooKeeperSaslClient. i.e. String clientSection = System.getProperty(ZooKeeperSaslClient.LOGIN_CONTEXT_NAME_KEY, "Client"); entries = Configuration.getConfiguration().getAppConfigurationEntry(clientSection); If ( entries != null ) // then SASL is enabled But this seems brittle. Is there another way? -JZ |