We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d9e24a + b971fa1 commit cc0274dCopy full SHA for cc0274d
lib_eio_windows/err.ml
@@ -20,7 +20,7 @@ let wrap code name arg =
20
| ENOENT -> Eio.Fs.err (Not_found e)
21
| EXDEV | EACCES | EPERM -> Eio.Fs.err (Permission_denied e)
22
| ECONNREFUSED -> Eio.Net.err (Connection_failure (Refused e))
23
- | ECONNRESET | EPIPE -> Eio.Net.err (Connection_reset e)
+ | ECONNRESET | EPIPE | ECONNABORTED -> Eio.Net.err (Connection_reset e)
24
| _ -> unclassified_error e
25
26
let run fn x =
0 commit comments