mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 20:39:18 +00:00
Merge branch '332200'
Conflicts: VERSION.txt git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3416 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
4f0400e6f3
commit
7f68abfa73
@ -1,6 +1,7 @@
|
||||
jetty-7.4.3-SNAPSHOT
|
||||
+ 295832 ProxyServlet more extensible and configurable
|
||||
+ 302566 GZIP handler for embedded Jetty servers
|
||||
+ 332200 Eliminate expected exceptions from log while using org.eclipse.jetty.jmx bundle
|
||||
+ 347617 Dynamically install/update/remove OSGi bundles discovered in the contexts folder
|
||||
+ 347717 start.jar destroys dependent child of --exec
|
||||
+ 347889 OSGi should follow directive visibility:=reexport for META-INF/web-fragments and resources
|
||||
|
@ -139,7 +139,12 @@ public class ObjectMBean implements DynamicMBean
|
||||
}
|
||||
catch (ClassNotFoundException e)
|
||||
{
|
||||
if (e.toString().endsWith("MBean"))
|
||||
// The code below was modified to fix bug 332200.
|
||||
// The issue was caused by additional information
|
||||
// added to the message after the class name when
|
||||
// Jetty is running in Apache Felix.
|
||||
String klass = e.getMessage().split("[ ]", 2)[0];
|
||||
if (klass.endsWith("MBean"))
|
||||
Log.ignore(e);
|
||||
else
|
||||
Log.warn(e);
|
||||
|
Loading…
x
Reference in New Issue
Block a user