From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 55E338591 for ; Fri, 3 Mar 2023 18:30:03 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 3D2F11A365 for ; Fri, 3 Mar 2023 18:30:03 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Fri, 3 Mar 2023 18:30:01 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 9E8E3463D0 for ; Fri, 3 Mar 2023 18:30:01 +0100 (CET) From: Max Carrara To: pve-devel@lists.proxmox.com Date: Fri, 3 Mar 2023 18:29:51 +0100 Message-Id: <20230303172951.197711-5-m.carrara@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230303172951.197711-1-m.carrara@proxmox.com> References: <20230303172951.197711-1-m.carrara@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.048 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH v2 http-server 4/4] anyevent: fix whitespace X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Mar 2023 17:30:03 -0000 Signed-off-by: Max Carrara --- src/PVE/APIServer/AnyEvent.pm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) NOTE: This patch can be dropped if not needed. diff --git a/src/PVE/APIServer/AnyEvent.pm b/src/PVE/APIServer/AnyEvent.pm index d1bba3c..0595e08 100644 --- a/src/PVE/APIServer/AnyEvent.pm +++ b/src/PVE/APIServer/AnyEvent.pm @@ -650,7 +650,7 @@ sub websocket_proxy { $proxyhdl->{block_disconnect} = 1 if length $proxyhdl->{wbuf}; $proxyhdl->push_shutdown(); - } + } $hdl->push_shutdown(); } elsif ($opcode == 9) { # ping received, schedule pong @@ -961,7 +961,7 @@ sub handle_api2_request { my $download = $res->{download}; $download //= $res->{data}->{download} - if defined($res->{data}) && ref($res->{data}) eq 'HASH'; + if defined($res->{data}) && ref($res->{data}) eq 'HASH'; if (defined($download)) { send_file_start($self, $reqstate, $download); return; @@ -998,12 +998,12 @@ sub handle_spice_proxy_request { my $clientip = $reqstate->{peer_host}; my $r = $reqstate->{request}; - my $remip; + my $remip; - if ($node ne 'localhost' && PVE::INotify::nodename() !~ m/^$node$/i) { - $remip = $self->remote_node_ip($node); + if ($node ne 'localhost' && PVE::INotify::nodename() !~ m/^$node$/i) { + $remip = $self->remote_node_ip($node); $self->dprint("REMOTE CONNECT $vmid, $remip, $connect_str"); - } else { + } else { $self->dprint("CONNECT $vmid, $node, $spiceport"); } @@ -1106,7 +1106,7 @@ sub handle_spice_proxy_request { $reqstate->{hdl}->push_write($line); $self->client_do_disconnect($reqstate); } - }); + }); } else { &$startproxy(); } -- 2.30.2