On 11/22/19 4:21 PM, Oguz Bektas wrote:
> 'pvecm create' fails since the subroutine doesn't exist in PVE::Cluster
> but in PVE::Corosync
> 
> Signed-off-by: Oguz Bektas <o.bek...@proxmox.com>
> ---
> 
> v1->v2:
> * PVE::Corosync is redundant since we're already in that module
> 
>  data/PVE/Corosync.pm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/data/PVE/Corosync.pm b/data/PVE/Corosync.pm
> index 1b92ea3..3208a6b 100644
> --- a/data/PVE/Corosync.pm
> +++ b/data/PVE/Corosync.pm
> @@ -239,7 +239,7 @@ sub create_conf {
>  
>      my $local_ip_address = PVE::Cluster::remote_node_ip($nodename);
>  
> -    my $link0 = PVE::Cluster::parse_corosync_link($param{link0});
> +    my $link0 = parse_corosync_link($param{link0});
>      $link0->{address} //= $local_ip_address;
>  
>      my $conf = {
> @@ -278,7 +278,7 @@ sub create_conf {
>      $totem->{interface}->{0}->{knet_link_priority} = $link0->{priority}
>       if defined($link0->{priority});
>  
> -    my $link1 = PVE::Cluster::parse_corosync_link($param{link1});
> +    my $link1 = parse_corosync_link($param{link1});
>      if ($link1->{address}) {
>       $conf->{totem}->{interface}->{1} = {
>           linknumber => 1,
> 

applied, thanks!

_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to