From: Dietmar Maurer Date: Sun, 15 Jan 2017 08:25:24 +0000 (+0100) Subject: remove base_handler_class from required arguments X-Git-Url: https://git.proxmox.com/?p=pve-http-server.git;a=commitdiff_plain;h=af76fd782d222b62dbae5f4796605d9e5de163c7 remove base_handler_class from required arguments --- diff --git a/PVE/APIServer/AnyEvent.pm b/PVE/APIServer/AnyEvent.pm index c319c07..bb6caae 100755 --- a/PVE/APIServer/AnyEvent.pm +++ b/PVE/APIServer/AnyEvent.pm @@ -1557,7 +1557,7 @@ sub new { my $class = ref($this) || $this; - foreach my $req (qw(base_handler_class socket lockfh lockfile)) { + foreach my $req (qw(socket lockfh lockfile)) { die "misssing required argument '$req'" if !defined($args{$req}); }