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.
1 parent 5426777 commit fe87c5aCopy full SHA for fe87c5a
src/http/http.ml
@@ -495,10 +495,8 @@ let serve_with_details
495
match network with
496
| `Unix path ->
497
(* Optimistically delete the socket file, if any. *)
498
- let%lwt () =
499
- try%lwt Lwt_unix.unlink path
500
- with Unix.Unix_error (ENOENT, _, _) -> Lwt.return_unit
501
- in
+ (try%lwt Lwt_unix.unlink path
+ with Unix.Unix_error (ENOENT, _, _) -> Lwt.return_unit);%lwt
502
Lwt.return (Lwt_unix.ADDR_UNIX path)
503
| `Inet port ->
504
let%lwt addresses =
0 commit comments