CVS: plexus-components/summit/src/java/org/apache/plexus/summit Summit.java,1.8,1.9

[email protected] Mon, 12 May 2003 10:26:36 -0500
Newsgroups gmane.comp.java.plexus.devel
Message-ID <[email protected]>
Update of /cvsroot/plexus/plexus-components/summit/src/java/org/apache/plexus/summit
In directory eng.werken.com:/tmp/cvs-serv14311/summit/src/java/org/apache/plexus/summit

Modified Files:
	Summit.java 
Log Message:
We need to release the RunData at the end of the request.  Otherwise
our pools of it will run out or we will have thousands of them in memory.

Index: Summit.java
===================================================================
RCS file: /cvsroot/plexus/plexus-components/summit/src/java/org/apache/plexus/summit/Summit.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Summit.java	5 May 2003 18:57:30 -0000	1.8
+++ Summit.java	12 May 2003 15:26:28 -0000	1.9
@@ -124,6 +124,8 @@
 
             // Execute the pipeline for this application applicationView.
             pipeline.invoke( data );
+            
+            getServiceManager().release( data );
         }
         catch ( Throwable t )
         {