At server.rs:90-113, the buffer is 1KB and the parser uses string_data.lines() against a single read. If the "EngineFS server started at" line straddles two reads, neither contains the full line and the check fails. Since endpoint_sent is one-shot, it's never recovered. 60s timeout fires and WebUI gets no server URL. Should buffer partial lines across reads.
At
server.rs:90-113, the buffer is 1KB and the parser usesstring_data.lines()against a single read. If the "EngineFS server started at" line straddles two reads, neither contains the full line and the check fails. Sinceendpoint_sentis one-shot, it's never recovered. 60s timeout fires and WebUI gets no server URL. Should buffer partial lines across reads.