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

Reply via email to