My agentic slop goes here. Not intended for anyone else!

sync

Changed files
+1 -15
stack
conpool
requests
lib
-9
stack/conpool/lib/conpool.ml
···
(** {1 Public API - Pool Management} *)
-
let close_idle_connections (pool : ('clock Eio.Time.clock, 'net Eio.Net.t) t) endpoint =
-
match Hashtbl.find_opt pool.endpoints endpoint with
-
| Some _ep_pool ->
-
(* This is complex to implement correctly with Eio.Pool *)
-
(* Would need to track idle connections separately *)
-
failwith "close_idle_connections: not yet implemented"
-
| None ->
-
() (* No connections to close *)
-
let close_all_connections (pool : ('clock Eio.Time.clock, 'net Eio.Net.t) t) endpoint =
match Hashtbl.find_opt pool.endpoints endpoint with
| Some _ep_pool ->
···
(** {1 Public API - Pool Management} *)
let close_all_connections (pool : ('clock Eio.Time.clock, 'net Eio.Net.t) t) endpoint =
match Hashtbl.find_opt pool.endpoints endpoint with
| Some _ep_pool ->
-5
stack/conpool/lib/conpool.mli
···
(** {1 Pool Management} *)
-
val close_idle_connections :
-
('clock Eio.Time.clock, 'net Eio.Net.t) t ->
-
Endpoint.t ->
-
unit
(** Close all idle connections for endpoint (keeps active ones) *)
-
val close_all_connections :
('clock Eio.Time.clock, 'net Eio.Net.t) t ->
Endpoint.t ->
···
(** {1 Pool Management} *)
(** Close all idle connections for endpoint (keeps active ones) *)
val close_all_connections :
('clock Eio.Time.clock, 'net Eio.Net.t) t ->
Endpoint.t ->
+1 -1
stack/requests/lib/one.ml
···
let start_time = Unix.gettimeofday () in
let method_str = Method.to_string method_ in
-
Log.info (fun m -> m "Making %s request to %s" method_str url);
(* Prepare headers *)
let headers = match headers with
···
let start_time = Unix.gettimeofday () in
let method_str = Method.to_string method_ in
+
Log.debug (fun m -> m "[One] Executing %s request to %s" method_str url);
(* Prepare headers *)
let headers = match headers with