X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=ff7e5489b7e9685e214ba804b9f8c61716918600;hp=62dc3bcf3c8894869d40ff00f0b4b7e3de9e818d;hb=22a5833d436649391dc95877ca33f549308c6c3c;hpb=6db8aa1d6fcd8b008971db965bf8e3190216b77b diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 62dc3bc..ff7e548 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -752,10 +752,10 @@ Start the engine. Implemented by the various engine classes. sub run { my ($self, $app, $server, @args) = @_; # FIXME - Do something sensible with the options we're passed - $server->run($self->_build_psgi_app($app, @args)); + $server->run($self->build_psgi_app($app, @args)); } -sub _build_psgi_app { +sub build_psgi_app { my ($self, $app, @args) = @_; my $psgi_app = sub {