public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata
@ 2021-11-25 13:48 Oguz Bektas
  2021-11-25 14:08 ` Thomas Lamprecht
  0 siblings, 1 reply; 4+ messages in thread
From: Oguz Bektas @ 2021-11-25 13:48 UTC (permalink / raw)
  To: pve-devel

Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>
Signed-off-by: Oguz Bektas <o.bektas@proxmox.com>
---
v1->v2:
* thanks dominik for catching my error!

 PVE/API2/Nodes.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm
index d57a1937..96479848 100644
--- a/PVE/API2/Nodes.pm
+++ b/PVE/API2/Nodes.pm
@@ -1554,7 +1554,7 @@ __PACKAGE__->register_method({
 
 	my $dccfg = PVE::Cluster::cfs_read_file('datacenter.cfg');
 	if ($dccfg->{http_proxy}) {
-	    $ua->proxy('http', $dccfg->{http_proxy});
+	    $ua->proxy(['http', 'https'], $dccfg->{http_proxy});
 	}
 
 	my $verify = $param->{'verify-certificates'} // 1;
-- 
2.30.2





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata
  2021-11-25 13:48 [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata Oguz Bektas
@ 2021-11-25 14:08 ` Thomas Lamprecht
  2021-11-25 14:11   ` Oguz Bektas
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Lamprecht @ 2021-11-25 14:08 UTC (permalink / raw)
  To: Proxmox VE development discussion, Oguz Bektas

On 25.11.21 14:48, Oguz Bektas wrote:
> Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>

where is this tag coming from? Did not see it on the list, only the comment
that it wasn't working?

> Signed-off-by: Oguz Bektas <o.bektas@proxmox.com>
> ---
> v1->v2:
> * thanks dominik for catching my error!
> 
>  PVE/API2/Nodes.pm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm
> index d57a1937..96479848 100644
> --- a/PVE/API2/Nodes.pm
> +++ b/PVE/API2/Nodes.pm
> @@ -1554,7 +1554,7 @@ __PACKAGE__->register_method({
>  
>  	my $dccfg = PVE::Cluster::cfs_read_file('datacenter.cfg');
>  	if ($dccfg->{http_proxy}) {
> -	    $ua->proxy('http', $dccfg->{http_proxy});
> +	    $ua->proxy(['http', 'https'], $dccfg->{http_proxy});
>  	}
>  
>  	my $verify = $param->{'verify-certificates'} // 1;
> 





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata
  2021-11-25 14:08 ` Thomas Lamprecht
@ 2021-11-25 14:11   ` Oguz Bektas
  2021-11-25 14:14     ` Thomas Lamprecht
  0 siblings, 1 reply; 4+ messages in thread
From: Oguz Bektas @ 2021-11-25 14:11 UTC (permalink / raw)
  To: Thomas Lamprecht; +Cc: Proxmox VE development discussion

On Thu, Nov 25, 2021 at 03:08:24PM +0100, Thomas Lamprecht wrote:
> On 25.11.21 14:48, Oguz Bektas wrote:
> > Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>
> 
> where is this tag coming from? Did not see it on the list, only the comment
> that it wasn't working?

yes its fixed now... he did review it, and its only a single line, so i
thought i'll add it before it gets forgotten along the way ;)

> 
> > Signed-off-by: Oguz Bektas <o.bektas@proxmox.com>
> > ---
> > v1->v2:
> > * thanks dominik for catching my error!
> > 
> >  PVE/API2/Nodes.pm | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm
> > index d57a1937..96479848 100644
> > --- a/PVE/API2/Nodes.pm
> > +++ b/PVE/API2/Nodes.pm
> > @@ -1554,7 +1554,7 @@ __PACKAGE__->register_method({
> >  
> >  	my $dccfg = PVE::Cluster::cfs_read_file('datacenter.cfg');
> >  	if ($dccfg->{http_proxy}) {
> > -	    $ua->proxy('http', $dccfg->{http_proxy});
> > +	    $ua->proxy(['http', 'https'], $dccfg->{http_proxy});
> >  	}
> >  
> >  	my $verify = $param->{'verify-certificates'} // 1;
> > 
> 




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata
  2021-11-25 14:11   ` Oguz Bektas
@ 2021-11-25 14:14     ` Thomas Lamprecht
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2021-11-25 14:14 UTC (permalink / raw)
  To: Oguz Bektas, Proxmox VE development discussion

On 25.11.21 15:11, Oguz Bektas wrote:
> On Thu, Nov 25, 2021 at 03:08:24PM +0100, Thomas Lamprecht wrote:
>> On 25.11.21 14:48, Oguz Bektas wrote:
>>> Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>
>>
>> where is this tag coming from? Did not see it on the list, only the comment
>> that it wasn't working?
> 
> yes its fixed now... he did review it, and its only a single line, so i
> thought i'll add it before it gets forgotten along the way ;)
> 

yeah no, that's not how it works.

first, one line or hundreds, that does not matter, especially one-liners can be
pretty bad. Secondly, the patch was completely broken, which got mentioned, that's
not akin to a R-b tag at all.. Nothing was there to get forgotten along the way.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-11-25 14:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-25 13:48 [pve-devel] [PATCH v2 manager] set https_proxy to http_proxy for querying url metadata Oguz Bektas
2021-11-25 14:08 ` Thomas Lamprecht
2021-11-25 14:11   ` Oguz Bektas
2021-11-25 14:14     ` Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal