You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2002/03/14 06:27:44 UTC

cvs commit: modperl/lib/Apache SizeLimit.pm

stas        02/03/13 21:27:44

  Modified:    lib/Apache SizeLimit.pm
  Log:
  - the parent process doesn't get killed if it's big, so correct the note
  not to say "exiting..."
  
  Revision  Changes    Path
  1.9       +1 -1      modperl/lib/Apache/SizeLimit.pm
  
  Index: SizeLimit.pm
  ===================================================================
  RCS file: /home/cvs/modperl/lib/Apache/SizeLimit.pm,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SizeLimit.pm	6 Jul 2001 13:44:39 -0000	1.8
  +++ SizeLimit.pm	14 Mar 2002 05:27:43 -0000	1.9
  @@ -227,7 +227,7 @@
   	        $r->child_terminate;
   
   	    } else {	# this is the main httpd, whose parent is init?
  -		my $msg = "main process too big, exiting at SIZE=$size KB ";
  +		my $msg = "main process too big, SIZE=$size KB ";
   		$msg .= " SHARE=$share KB" if ($share);
   		error_log($msg);
   	    }