fix(tools): select 0/1 ws instance for given server

main
Tsu-ba-me 2 years ago
parent 37fb3511d7
commit ce637cbf71
  1. 10
      tools/striker-manage-vnc-pipes

@ -216,6 +216,8 @@ ON
vnc.ws_host_uuid = hos.host_uuid
WHERE
vnc.server_uuid = ".$anvil->Database->quote($server_uuid)."
AND
vnc.ws_host_uuid = ".$anvil->Database->quote($ws_host_uuid)."
;";
my $results = $anvil->Database->query({ query => $query, source => $THIS_FILE, line => __LINE__ });
@ -223,9 +225,9 @@ WHERE
foreach my $row (@{$results})
{
my $server_vnc_port_in_record = $row->[0];
my $server_vnc_port_in_record = $row->[0] // 0;
my $ws_host_name = $row->[1];
my $ws_host_uuid_in_record = $row->[2];
my $ws_host_uuid_in_record = $row->[2] // '';
my $ws_pid = $row->[3];
my $ws_source_port = $row->[4];
my $ssh_tunnel_host_uuid = $row->[5];
@ -300,8 +302,8 @@ AND
if ($count == 1)
{
my $row = $results->[0];
my $ws_host_uuid_in_record = $row->[0];
my $ws_source_port_in_record = $row->[1];
my $ws_host_uuid_in_record = $row->[0] // '';
my $ws_source_port_in_record = $row->[1] // 0;
my $ssh_tunnel_pid = $row->[2];
my $ssh_tunnel_forward_port = $row->[3];
my $clean_up_parameters = { ssh_tunnel_pid => $ssh_tunnel_pid };

Loading…
Cancel
Save