From 54470a006c91516acba84221d91fafa1caf80f93 Mon Sep 17 00:00:00 2001 From: Albin Coquereau Date: Fri, 28 Nov 2025 14:06:03 +0100 Subject: [PATCH 1/2] tezt/lib_cloud: improve logs and profiling retrieval --- tezt/lib_cloud/cloud.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/lib_cloud/cloud.ml b/tezt/lib_cloud/cloud.ml index 5d90f09d0c8d..21c3511984ab 100644 --- a/tezt/lib_cloud/cloud.ml +++ b/tezt/lib_cloud/cloud.ml @@ -55,7 +55,7 @@ let shutdown ?exn t = in (* Shutdown the service managers before alert_manager *) let* () = - Lwt_list.iter_s + Lwt_list.iter_p (fun agent -> match Agent.service_manager agent with | None -> Lwt.return_unit -- GitLab From 337e3a592f742ef7881d5bfa9add5ff0abb10ca7 Mon Sep 17 00:00:00 2001 From: Albin Coquereau Date: Fri, 28 Nov 2025 14:06:42 +0100 Subject: [PATCH 2/2] tezt/teztale: add max_batch_size option to allow report usage --- tezt/lib_tezos/teztale.ml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tezt/lib_tezos/teztale.ml b/tezt/lib_tezos/teztale.ml index 0d4c0d30abd0..c627c2b16c4b 100644 --- a/tezt/lib_tezos/teztale.ml +++ b/tezt/lib_tezos/teztale.ml @@ -52,6 +52,7 @@ module Server = struct let pp_interface fmt {address; port} = Format.fprintf fmt {|{"address": "%s", "port": %d}|} address port in + let max_batch_size = Int32.max_int in let pp_public_directory fmt public_directory = match public_directory with | None -> Format.fprintf fmt "" @@ -67,6 +68,7 @@ module Server = struct "interfaces": [%a], "users": [%a], "admins": [%a], + "max_batch_size": %ld, "with_transaction": "FULL", "verbosity": "INFO"%a }|} @@ -77,6 +79,7 @@ module Server = struct conf.users pp_login conf.admin + max_batch_size pp_public_directory conf.public_directory in -- GitLab