diff options
author | David Lawrence <dkl@mozilla.com> | 2015-05-26 22:24:28 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-05-26 22:29:43 +0200 |
commit | a9277f75d0f1ebc39e7e55c2ae820e88d4bc43ca (patch) | |
tree | cd6eb28f1da01ca95eff1cc779fe0eedfe0eface /extensions/MozReview | |
parent | f8b984852ae27f14a5f44e651193f00977737ab1 (diff) | |
download | bugzilla-a9277f75d0f1ebc39e7e55c2ae820e88d4bc43ca.tar.gz bugzilla-a9277f75d0f1ebc39e7e55c2ae820e88d4bc43ca.tar.xz |
- Updated to use https for proxy scheme
Diffstat (limited to 'extensions/MozReview')
-rwxr-xr-x | extensions/MozReview/bin/add-mozreview-children.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/MozReview/bin/add-mozreview-children.pl b/extensions/MozReview/bin/add-mozreview-children.pl index 1c93f8b2f..fd990d92c 100755 --- a/extensions/MozReview/bin/add-mozreview-children.pl +++ b/extensions/MozReview/bin/add-mozreview-children.pl @@ -31,7 +31,7 @@ use JSON; use LWP::Simple qw( get $ua ); if (my $proxy = Bugzilla->params->{proxy_url}) { - $ua->proxy($proxy); + $ua->proxy('https', $proxy); } # Disable the "cannot ask for review" so we can reassign their flags to |