From 2604ab856b9fcc117b60732ddcd337dd3d2e97a6 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 12 Mar 2020 17:37:49 +0700 Subject: Fix module path for newer versions of the Protobuf compiler runtime. --- src/vyconfd.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vyconfd.ml b/src/vyconfd.ml index f2af9b0..d79bda9 100644 --- a/src/vyconfd.ml +++ b/src/vyconfd.ml @@ -146,7 +146,7 @@ let rec handle_connection world ic oc fd () = try let envelope = decode_request_envelope (Pbrt.Decoder.of_bytes req_msg) in Lwt.return (Ok (envelope.token, envelope.request)) - with Protobuf.Decoder.Failure e -> Lwt.return (Error (Protobuf.Decoder.error_to_string e)) + with Pbrt.Decoder.Failure e -> Lwt.return (Error (Pbrt.Decoder.error_to_string e)) in let%lwt resp = (match req with -- cgit v1.2.3