File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
archive/archive_node_tests Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ let test_case (test_data : t) =
4848 let % bind () =
4949 Daemon. archive_blocks_from_files daemon.executor
5050 ~archive_address: test_data.archive.config.server_port ~format: `Precomputed
51- precomputed_blocks
51+ ~sleep: 5 precomputed_blocks
5252 in
5353 [% log info] " Loaded all precomputed blocks" ;
5454 let % bind () = Ivar. read upgrade_script_finished in
Original file line number Diff line number Diff line change @@ -193,7 +193,6 @@ type t = { config : Config.t; executor : Executor.t }
193193let archive_blocks_from_files t ~archive_address ~format ?(sleep = 5 ) blocks =
194194 Deferred.List. iter blocks ~f: (fun block ->
195195 let % bind _ = archive_blocks t ~archive_address ~format [ block ] () in
196- (* WARN: live upgrade test expect this sleep to be present so we can emulate a race condition *)
197196 after (Time.Span. of_sec (Float. of_int sleep)) )
198197
199198let of_config config = { config; executor = Executor. AutoDetect }
You can’t perform that action at this time.
0 commit comments