Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(check.yml): add sleep i.e. client wait for server (#1765)
Windows CI oftentimes fails with: ``` 0s 0ms INFO H3 Client connecting: [::]:65093 -> [::1]:4433 Error: IoError(Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." }) 0s 0ms INFO Server waiting for connection on: [::1]:4433 0s 0ms INFO Server waiting for connection on: 127.0.0.1:4433 ``` https://github.com/mozilla/neqo/actions/runs/8374577016/job/22930136500?pr=1692 This suggests that the client connects to the server before the server is ready to accept connections. This commit adds a sleep, thus giving the server time to start up. Tracked in #1759. Sleep was previously introduced in #1713 but later removed in #1717
- Loading branch information