Skip to content

Commit

Permalink
Fixed tracer to work with Camel 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed May 24, 2013
1 parent f77036d commit b46bc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/camel/js/helpers.ts
Expand Up @@ -525,7 +525,7 @@ module Camel {
// look for the Camel 2.11 mbean which we prefer
var result = tree.navigate(domain, contextId, "tracer");
if (result && result.children) {
var mbean = result.children.find(m => m.title.startsWith("Backlog"));
var mbean = result.children.find(m => m.title.startsWith("BacklogTracer"));
if (mbean) {
return mbean.objectName;
}
Expand Down

0 comments on commit b46bc3d

Please sign in to comment.