File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
let response http ~sw =
10
10
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
12
12
match result with
13
13
| Ok st ->
14
14
Log. app (fun k ->
Original file line number Diff line number Diff line change @@ -77,14 +77,17 @@ let read (dec : 'a Decoders_yojson.Basic.Decode.decoder)
77
77
let get_history (c : Config.t ) cl ~sw =
78
78
let uri = build_uri c " /history" in
79
79
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)
82
84
83
85
let get_status (c : Config.t ) cl ~sw =
84
86
let uri = build_uri c " /status" in
85
87
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)
88
91
89
92
let reset (c : Config.t ) cl ~sw =
90
93
let uri = build_uri c " /reset" in
You can’t perform that action at this time.
0 commit comments