Skip to content

Commit

Permalink
Try to not include :443 in the SNI?
Browse files Browse the repository at this point in the history
  • Loading branch information
thebracket committed Jan 13, 2025
1 parent 2765401 commit cf6907a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl MessageQueue {
let target = format!("wss://{}:443/ingest/ws", remote_host);
info!("Sending messages to {}", target);

let Ok(stream) = TcpStream::connect(&format!("{}:443", remote_host)) else {
let Ok(stream) = TcpStream::connect(&format!("{}", remote_host)) else {
warn!("Failed to connect to ingestion server");
return Ok(());
};
Expand Down

0 comments on commit cf6907a

Please sign in to comment.