Skip to content

Commit 82dbcfe

Browse files
committed
feat: printing body
1 parent 7e165c7 commit 82dbcfe

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

bin/test_eio.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let () =
88

99
let response http ~sw =
1010
Log.debug (fun k -> k "Sending query to server...");
11-
let result = Main_eio.reset config http ~sw in
11+
let result = Main_eio.get_history config http ~sw in
1212
match result with
1313
| Ok st ->
1414
Log.app (fun k ->

src/main_eio.ml

+7-4
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,17 @@ let read (dec : 'a Decoders_yojson.Basic.Decode.decoder)
7777
let get_history (c : Config.t) cl ~sw =
7878
let uri = build_uri c "/history" in
7979
let headers = default_headers c |> Cohttp.Header.of_list in
80-
let res = Cohttp_eio.Client.get cl ~sw uri ~headers in
81-
read Decoders_yojson.Basic.Decode.string res
80+
let resp, body = Cohttp_eio.Client.get cl ~sw uri ~headers in
81+
Logs.app (fun k -> k "%s" (body |> Eio.Flow.read_all));
82+
83+
read Decoders_yojson.Basic.Decode.string (resp, body)
8284

8385
let get_status (c : Config.t) cl ~sw =
8486
let uri = build_uri c "/status" in
8587
let headers = default_headers c |> Cohttp.Header.of_list in
86-
let res = Cohttp_eio.Client.get cl ~sw uri ~headers in
87-
read Decoders_yojson.Basic.Decode.string res
88+
let resp, body = Cohttp_eio.Client.get cl ~sw uri ~headers in
89+
Logs.app (fun k -> k "%s" (body |> Eio.Flow.read_all));
90+
read Decoders_yojson.Basic.Decode.string (resp, body)
8891

8992
let reset (c : Config.t) cl ~sw =
9093
let uri = build_uri c "/reset" in

0 commit comments

Comments
 (0)