From 12ed4d97485dccd15e8f0153bd5125a77476b613 Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Wed, 16 Jul 2025 14:45:05 +0200 Subject: [PATCH 1/2] Tezt/Cloud/DAL: remove misleading --force-history-mode-switch --- tezt/tests/cloud/dal.ml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tezt/tests/cloud/dal.ml b/tezt/tests/cloud/dal.ml index 9d1bac2d25a4..6b4fd7a5659a 100644 --- a/tezt/tests/cloud/dal.ml +++ b/tezt/tests/cloud/dal.ml @@ -317,8 +317,7 @@ module Node = struct ?ppx_profiling ?env node - (Force_history_mode_switch :: Synchronisation_threshold 1 - :: arguments) + (Synchronisation_threshold 1 :: arguments) in toplog "Waiting for the node %s to be ready." name ; let* () = wait_for_ready node in @@ -399,7 +398,6 @@ module Node = struct No_bootstrap_peers; Synchronisation_threshold 0; Cors_origin "*"; - Force_history_mode_switch; ] @ yes_crypto_arg @ arguments) in -- GitLab From 225975923be006f09ecdd1e8040af8f5575c16d8 Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Wed, 16 Jul 2025 14:45:42 +0200 Subject: [PATCH 2/2] Tezt/Cloud/Layer1: remove misleading --force-history-mode-switch --- tezt/tests/cloud/layer1.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/tests/cloud/layer1.ml b/tezt/tests/cloud/layer1.ml index d605a3d80b22..758af3246db6 100644 --- a/tezt/tests/cloud/layer1.ml +++ b/tezt/tests/cloud/layer1.ml @@ -117,7 +117,7 @@ module Node = struct Private_mode :: List.fold_left (fun acc peer -> Peer peer :: acc) - [Allow_yes_crypto; Force_history_mode_switch] + [Allow_yes_crypto] peers (** [add_migration_offset_to_config node snapshot ~migration_offset ~network] adds an -- GitLab