The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #783 from talex5/windows-conn-aborted

eio_windows: group ECONNABORTED with other connection reset errors

authored by

Thomas Leonard and committed by
GitHub
2d3aa48b 89705df8

+1 -1
+1 -1
vendor/opam/eio/lib_eio_windows/err.ml
··· 20 20 | ENOENT -> Eio.Fs.err (Not_found e) 21 21 | EXDEV | EACCES | EPERM -> Eio.Fs.err (Permission_denied e) 22 22 | ECONNREFUSED -> Eio.Net.err (Connection_failure (Refused e)) 23 - | ECONNRESET | EPIPE -> Eio.Net.err (Connection_reset e) 23 + | ECONNRESET | EPIPE | ECONNABORTED -> Eio.Net.err (Connection_reset e) 24 24 | _ -> unclassified_error e 25 25 26 26 let run fn x =