[Rt-commit] r3831 - in HTTP-Server-Simple: . lib/HTTP/Server/Simple

jesse at bestpractical.com jesse at bestpractical.com
Mon Sep 5 14:11:00 EDT 2005


Author: jesse
Date: Mon Sep  5 14:10:59 2005
New Revision: 3831

Modified:
   HTTP-Server-Simple/   (props changed)
   HTTP-Server-Simple/lib/HTTP/Server/Simple/CGI.pm
Log:
 r15370 at hualien:  jesse | 2005-09-04 17:46:33 -0400
 * Try even harder not to die when handling our request


Modified: HTTP-Server-Simple/lib/HTTP/Server/Simple/CGI.pm
==============================================================================
--- HTTP-Server-Simple/lib/HTTP/Server/Simple/CGI.pm	(original)
+++ HTTP-Server-Simple/lib/HTTP/Server/Simple/CGI.pm	Mon Sep  5 14:10:59 2005
@@ -90,7 +90,7 @@
 sub handler {
     my $self = shift;
     my $cgi = new CGI();
-    $self->handle_request($cgi);
+    eval {$self->handle_request($cgi) };
 }
 
 


More information about the Rt-commit mailing list