Skip to content

Commit

Permalink
Fixing audit.container interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
escowles committed Apr 27, 2015
1 parent 5fe0ddd commit a8f9d91
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ public void configure() throws Exception {
from("activemq:{{jms.fcrepoEndpoint}}")
.routeId("AuditFcrepoRouter")
.choice()
.when(not(header("org.fcrepo.jms.identifier").startsWith("{{audit.container}}")))
.when(not(header("org.fcrepo.jms.identifier").startsWith(simple("{{audit.container}}"))))
.to("direct:event");

from("direct:event")
Expand Down

0 comments on commit a8f9d91

Please sign in to comment.