338607 Removed managed attributes when context is stopped

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2844 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2011-03-02 00:13:40 +00:00
parent 13a46c3e9c
commit 7b892d18a0
2 changed files with 4 additions and 3 deletions

View File

@ -18,12 +18,13 @@ jetty-7.3.1-SNAPSHOT
+ 337896 HttpExchange.timeout does not override HttpClient.timeout
+ 337898 set client HttpConnection max idle time from exchange timeout
+ 338035 Default acceptors 0.25*CPUs and improved selector/acceptor thread names.
+ 338068 Leaking ConstraintMappings on redeploy
+ 338092 ProxyServlet leaks memory
+ 338607 Removed managed attributes when context is stopped
+ JETTY-1317 More elegent handling of bad URIs in requests
+ JETTY-1331 Allow alternate XML configuration processors (eg spring)
+ JETTY-1335 HttpClient's SelectConnector clean-up
+ JETTY-1333 HttpClient _timeout and _soTimeout is messed up
+ 338068 Leaking ConstraintMappings on redeploy
+ 338092 ProxyServlet leaks memory
jetty-7.3.0.v20110203 3 February 2011
+ JETTY-1259 NullPointerException in JDBCSessionIdManager when invalidating session (further update)

View File

@ -1073,7 +1073,7 @@ public class ContextHandler extends ScopedHandler implements Attributes, Server.
public void setManagedAttribute(String name, Object value)
{
Object old =_managedAttributes.put(name,value);
getServer().getContainer().update(this,old,value,name);
getServer().getContainer().update(this,old,value,name,true);
}
/* ------------------------------------------------------------ */