mirror of
https://github.com/yusufipk/dikte.git
synced 2026-09-11 10:56:10 +00:00
The stand-in whisper server in the ggml tests is an http.server, and http.server looks up the reverse name of the address it bound in between the bind and the listen. On Linux that answers at once. On a Mac nothing answers and the lookup sits in a resolver timeout for thirty-five seconds, with the port closed the whole time and _wait_ready watching it. Seven tests start a server and one of them starts two, so the macOS job spent 330 of its 334 seconds inside that lookup while the same suite took fifteen seconds on Linux. Binding through socketserver and naming the server after the address it already has skips the question.