From: Frédéric Buclin Date: Wed, 7 Jan 2015 13:33:16 +0000 (+0100) Subject: Bug 1113147: Revert the hack from bug 1108809 and blacklist SOAP::Lite 1.12 X-Git-Tag: release-5.1.1~402 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41a35f6dd3ac87d44dbdcc8418c57071cf6c5f37;p=thirdparty%2Fbugzilla.git Bug 1113147: Revert the hack from bug 1108809 and blacklist SOAP::Lite 1.12 r=dkl a=glob --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index ee50a526ab..d722cc6d7c 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -281,6 +281,8 @@ sub OPTIONAL_MODULES { # Fixes various bugs, including 542931 and 552353 + stops # throwing warnings with Perl 5.12. version => '0.712', + # SOAP::Transport::HTTP 1.12 is bogus. + blacklist => ['^1\.12$'], feature => ['xmlrpc'], }, # Since SOAP::Lite 1.0, XMLRPC::Lite is no longer included diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm index de9a5a97bd..56b31ffefe 100644 --- a/Bugzilla/WebService/Server/XMLRPC.pm +++ b/Bugzilla/WebService/Server/XMLRPC.pm @@ -47,13 +47,6 @@ BEGIN { }; } -sub new { - my $class = shift; - my $self = $class->SUPER::new(@_); - $self->{debug_logger} = sub {}; - return $self; -} - sub initialize { my $self = shift; my %retval = $self->SUPER::initialize(@_);