From 3cc76cb0007d6dfb977f3ecfdc944cbc8b990ac3 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Thu, 10 Sep 2015 10:44:04 +0200 Subject: [PATCH] + Fix #147: proyxurl option not working --- centreon/plugins/http.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centreon/plugins/http.pm b/centreon/plugins/http.pm index f7086b30f..db46f4555 100644 --- a/centreon/plugins/http.pm +++ b/centreon/plugins/http.pm @@ -167,7 +167,7 @@ sub set_proxy { } } if (defined($options{request}->{proxyurl}) && $options{request}->{proxyurl} ne '') { - $self->{ua}->proxy(['http', 'https'], $options{request_options}->{proxyurl}); + $self->{ua}->proxy(['http', 'https'], $options{request}->{proxyurl}); } }