Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/sdk-core/tests/integ_tests/client_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ async fn http_proxy() {
opts.set_skip_get_system_info(true);

// Connect client with no proxy and make call and confirm reached
opts.target = format!("http://127.0.0.1:{}", server.addr.port())
opts.target = format!("http://[::1]:{}", server.addr.port())
.parse()
.unwrap();
let connection = Connection::connect(opts.clone()).await.unwrap();
Expand Down
Loading