Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Lucy Lib: remove Network.initialize_infra as it's a noop
  • Loading branch information
glyh committed Oct 24, 2025
commit a297e7e6284a0c23f9eae6ea4250d555bf26c4df
2 changes: 0 additions & 2 deletions src/app/test_executive/test_executive.ml
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,6 @@ let main inputs =
in
(network, dsl)
in
[%log trace] "initializing network abstraction" ;
let%bind () = Engine.Network.initialize_infra ~logger network in

[%log info] "Starting the daemons within the pods" ;
let start_print (node : Engine.Network.Node.t) =
Expand Down
2 changes: 0 additions & 2 deletions src/lib/testing/integration_test_lib/intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ module Engine = struct
val genesis_keypairs : t -> Network_keypair.t Core.String.Map.t

val genesis_keypair_exn : t -> String.t -> Network_keypair.t

val initialize_infra : logger:Logger.t -> t -> unit Malleable_error.t
end

module type Network_manager_intf = sig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,3 @@ let all_ids t =
let deployments = all_nodes t |> Core.Map.to_alist in
List.fold deployments ~init:[] ~f:(fun acc (_, node) ->
List.cons node.config.service_id acc )

let initialize_infra ~logger network =
let _ = logger in
let _ = network in
Malleable_error.return ()