Hello.

I found out the following behaviour in my app:

I open connection:
Code:
self.client = [LSClient client];


LSConnectionInfo *connectionInfo = [LSConnectionInfo connectionInfoWithPushServerURL:_url
                                                      pushServerControlURL:nil
                                                                      user:_userName
                                                                  password:_password
                                                                   adapter:_adapter];

@try
{
     [_clientopenConnectionWithInfo:connectionInfo delegate:self];
}
@catch (LSPushServerException *exPushServer)
{
}
@catch (LSPushConnectionException *exPushConn)
{
}
But if I use wrong crendentials it never connect or through any exception. And the thread is blocked.
What shall I do?

Thanks in advance.