Skip to content

Commit

Permalink
fix(camel,jmx): fix Camel plugin should precede JMX
Browse files Browse the repository at this point in the history
Fix #653
  • Loading branch information
tadayosi committed Nov 9, 2023
1 parent 14c0a89 commit 51bb1a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hawtio/src/plugins/camel/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { jmxDomain, log, pluginPath } from './globals'
import help from './help.md'
import { camelTreeProcessor } from './tree-processor'

const order = 13
const order = 12

export const camel: HawtioPlugin = () => {
hawtio.addPlugin({
Expand Down
2 changes: 1 addition & 1 deletion packages/hawtio/src/plugins/jmx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { pluginPath } from './globals'
import help from './help.md'
import { Jmx } from './Jmx'

const order = 12
const order = 13

export const jmx: HawtioPlugin = () => {
hawtio.addPlugin({
Expand Down

0 comments on commit 51bb1a2

Please sign in to comment.