Still not quite sure why but this
#[must_use]
pub fn is_editor_port(port: u16) -> bool {
reqwest::blocking::Client::new()
.head(editor_url(port))
.send()
.is_ok_and(|r| r.status().is_success())
}
Returns false on Windows even though the editor server is running
Still not quite sure why but this
Returns false on Windows even though the editor server is running