Skip to content

Commit 036a7f6

Browse files
tmcgilchristtalex5
authored andcommitted
Updates from review comments
1 parent 6760ac3 commit 036a7f6

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

bin/main.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ let reporter =
3030
let setup_log style_renderer level =
3131
Fmt_tty.setup_std_outputs ?style_renderer ();
3232
Logs.set_level level;
33-
(* Disable tls.tracing when logs are set to debug *)
33+
(* Disable tls.tracing when logs are set to debug:
34+
(remove once we have https://github.com/dbuenzli/logs/issues/37) *)
3435
(* List.iter
3536
(fun src -> match Logs.Src.name src with "tls.tracing" -> Logs.Src.set_level src (Some Info) | _ -> ())
3637
@@ Logs.Src.list (); *)

worker/solver_worker.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ let build ~cancelled ~log t descr =
6161
let output = Custom.solve ~cancelled ~solver:t.solver ~log c in
6262
Log_data.write log "Job succeeded\n";
6363
(Ok output, "ok")
64-
| _ ->
64+
| Obuilder_build _ | Docker_build _ ->
6565
let msg = "Only custom builds are supported" in
6666
(Error (`Msg msg), "build failed")
6767

0 commit comments

Comments
 (0)