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 using an outgoing local filter with a hostname that does not exist locally, all outgoing connections seem to be broken.
Example config:
{ "feature": { "network": { "outgoing": { "tcp": true, "filter": { "local": ["i-do-not-exist-at-all"] } }, "dns": true } } }
Example app:
use std::net::TcpStream; fn main() { let _stream = TcpStream::connect("py-serv:80").expect("py-serv should exist in the cluster"); }
py-serv
TcpStream::connect
Os { code: 5, kind: Uncategorized, message: "Input/output error" }
2024-03-01T10:28:50.776415Z ERROR ThreadId(01) mirrord_layer::error: Error occured in Layer >> IO(Custom { kind: Uncategorized, error: "failed to lookup address information: Temporary failure in name resolution" })
No response
Linux 6.5.0-21-generic #21~22.04.1-Ubuntu
The text was updated successfully, but these errors were encountered:
OutgoingSelector
Razz4780
Successfully merging a pull request may close this issue.
Bug Description
When using an outgoing local filter with a hostname that does not exist locally, all outgoing connections seem to be broken.
Example config:
Example app:
Steps to Reproduce
py-serv
service in the clusterTcpStream::connect
fails withOs { code: 5, kind: Uncategorized, message: "Input/output error" }
. Layer prints2024-03-01T10:28:50.776415Z ERROR ThreadId(01) mirrord_layer::error: Error occured in Layer >> IO(Custom { kind: Uncategorized, error: "failed to lookup address information: Temporary failure in name resolution" })
Backtrace
No response
Relevant Logs
No response
Your operating system and version
Linux 6.5.0-21-generic #21~22.04.1-Ubuntu
Local process
Local process version
No response
Additional Info
No response
The text was updated successfully, but these errors were encountered: