cvsuser 02/02/08 12:48:08
Modified: P5EEx/Blue/P5EEx/Blue/Context CGI.pm
Log:
shut down open connections to repositories after each request is processed
Revision Changes Path
1.5 +2 -1 p5ee/P5EEx/Blue/P5EEx/Blue/Context/CGI.pm
Index: CGI.pm
===================================================================
RCS file: /cvs/public/p5ee/P5EEx/Blue/P5EEx/Blue/Context/CGI.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -r1.4 -r1.5
--- CGI.pm 5 Feb 2002 22:19:27 -0000 1.4
+++ CGI.pm 8 Feb 2002 20:48:08 -0000 1.5
@@ -1,6 +1,6 @@
#############################################################################
-## $Id: CGI.pm,v 1.4 2002/02/05 22:19:27 spadkins Exp $
+## $Id: CGI.pm,v 1.5 2002/02/08 20:48:08 spadkins Exp $
#############################################################################
package P5EEx::Blue::Context::CGI;
@@ -507,6 +507,7 @@
}
$self->display_current_widget();
+ $self->shutdown();
}
1;