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
When agent handles connect request and times out, it will not process any message coming from layer for 3s
connect
LayerTcpOutgoing::Connect(LayerConnect { remote_address }) => { let daemon_connect = time::timeout( Self::CONNECT_TIMEOUT, SocketStream::connect(remote_address.clone(), self.pid), ) .await
We should make the result async instead of sync probably after closing #1898 (since it won't have any effect beforethen)
The text was updated successfully, but these errors were encountered:
DmitryDodzin
No branches or pull requests
When agent handles
connect
request and times out, it will not process any message coming from layer for 3sWe should make the result async instead of sync probably after closing #1898 (since it won't have any effect beforethen)
The text was updated successfully, but these errors were encountered: