diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-06-08 22:43:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-08 22:43:12 +0200 |
commit | 03bc182966d1fdd852be40d901ce998b1eaec7b7 (patch) | |
tree | 7bafbbc3adc32c464b7fe8e36f2dee10bdb8402f /extensions | |
parent | 0a7f9d271efb4f97aaddcb39c173e986f5357d59 (diff) | |
download | bugzilla-03bc182966d1fdd852be40d901ce998b1eaec7b7.tar.gz bugzilla-03bc182966d1fdd852be40d901ce998b1eaec7b7.tar.xz |
Bug 1370973 - Add support for CONNECT proxy (add LWP::Protocol::connect)
* remove UserAgent from updates
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Bitly/Config.pm | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/extensions/Bitly/Config.pm b/extensions/Bitly/Config.pm index a07df0f1b..7e46a6ad8 100644 --- a/extensions/Bitly/Config.pm +++ b/extensions/Bitly/Config.pm @@ -13,23 +13,8 @@ use warnings; use constant NAME => 'Bitly'; -sub REQUIRED_MODULES { - return [ - { - package => 'LWP', - module => 'LWP', - version => '5.835', - }, - ]; -} - -use constant OPTIONAL_MODULES => [ - { - package => 'Mozilla-CA', - module => 'Mozilla::CA', - version => 0 - }, -]; +use constant REQUIRED_MODULES => []; +use constant OPTIONAL_MODULES => []; use constant API_VERSION_MAP => { '1_0' => '1_0' }; |