We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55dcefd commit 9c03643Copy full SHA for 9c03643
1 file changed
src/eval/bt_runner.rs
@@ -125,7 +125,9 @@ impl SseWriter {
125
}
126
127
fn create_sse_writer() -> Option<Arc<SseWriter>> {
128
- // Try Unix domain socket first (BT_EVAL_SSE_SOCK)
+ // Unix socket SSE is only available on Unix platforms; Windows continues
129
+ // to the TCP fallback below.
130
+ #[cfg(unix)]
131
if let Ok(sock_path) = std::env::var("BT_EVAL_SSE_SOCK") {
132
if !sock_path.is_empty() {
133
match std::os::unix::net::UnixStream::connect(&sock_path) {
0 commit comments