Commit 9f7fcb9f authored by Sergei Golubchik's avatar Sergei Golubchik

mtr: include restart_opts in --verbose-restart

parent aade6e53
...@@ -5294,12 +5294,12 @@ sub server_need_restart { ...@@ -5294,12 +5294,12 @@ sub server_need_restart {
exists $server->{'restart_opts'}) exists $server->{'restart_opts'})
{ {
my $use_dynamic_option_switch= 0; my $use_dynamic_option_switch= 0;
delete $server->{'restart_opts'}; my $restart_opts = delete $server->{'restart_opts'} || [];
if (!$use_dynamic_option_switch) if (!$use_dynamic_option_switch)
{ {
mtr_verbose_restart($server, "running with different options '" . mtr_verbose_restart($server, "running with different options '" .
join(" ", @{$extra_opts}) . "' != '" . join(" ", @{$extra_opts}) . "' != '" .
join(" ", @{$started_opts}) . "'" ); join(" ", @{$started_opts}, @{$restart_opts}) . "'" );
return 1; return 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment