We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We must iterate every NSQConn in conns_ to check whether it is OK.
bool Client::IsReady() const { if (conns_.empty()) { return false; } return conns_[0]->IsReady(); }
And in Client::OnConnection, when the NSQConn is at 'kConnected' status, should't we move it to conns_??
Client::OnConnection
conns_
The text was updated successfully, but these errors were encountered:
Fix evnsq Client::IsReady() logic error : #21
7d3fd08
086209f
03d06b9
8e23ef3
No branches or pull requests
We must iterate every NSQConn in conns_ to check whether it is OK.
And in
Client::OnConnection
, when the NSQConn is at 'kConnected' status, should't we move it toconns_
??The text was updated successfully, but these errors were encountered: