Created
November 30, 2011 21:14
-
-
Save johndemic/1410851 to your computer and use it in GitHub Desktop.
Mule Circuit Breaker Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<circuitbreaker:config breakerName="testingBreaker" tripThreshold="5" tripTimeout="300000"/> | |
<flow name="testFlow"> | |
<vm:inbound-endpoint path="vm.in"/> | |
<circuitbreaker:filter/> | |
<test:component throwException="true"/> | |
<vm:outbound-endpoint path="vm.out"/> | |
<default-exception-strategy> | |
<circuitbreaker:trip tripOnException="org.mule.tck.exceptions.FunctionalTestException"/> | |
</default-exception-strategy> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment