File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 7979
8080 peadm::assert_supported_pe_version($version , $permit_unsafe_versions )
8181
82+ # Log parameters for debugging
83+ peadm::log_plan_parameters({
84+ ' targets' => $targets ,
85+ ' primary_host' => $primary_host ,
86+ ' mode' => $mode ,
87+ ' begin_at_step' => $begin_at_step ,
88+ })
89+
8290 $install_result = run_plan(' peadm::subplans::install' ,
8391 # Standard
8492 primary_host => $primary_host ,
Original file line number Diff line number Diff line change 7373 $compiler_hosts ,
7474 )
7575
76+ # Log parameters for debugging
77+ peadm::log_plan_parameters({
78+ ' targets' => $targets ,
79+ ' primary_host' => $primary_host ,
80+ ' mode' => $mode ,
81+ ' begin_at_step' => $begin_at_step ,
82+ })
83+
7684 # Convert inputs into targets.
7785 $primary_target = peadm::get_targets($primary_host , 1)
7886 $replica_target = peadm::get_targets($replica_host , 1)
Original file line number Diff line number Diff line change 1+ function peadm::log_plan_parameters(Hash $params ) {
2+ $params .each |$key , $value | {
3+ out::message(" Parameter '${key} ': [${value} ]" )
4+ }
5+ }
You can’t perform that action at this time.
0 commit comments