-
Bug
-
Resolution: Done
-
Major
-
7.3.1
When the Camel XML file which is including loop flow is saved on the design page, it will be disturbed.
before:
<route id="timerToLog"> <from uri="timer:foo?period=5000"/> <loop> <simple>5</simple> <setBody> <method ref="helloBean" method="hello"/> </setBody> <log message="* The message contains ${body}"/> </loop> <log message="***** The message contains ${body}"/> <to uri="mock:result"/> </route>
after:
<route id="timerToLog"> <from uri="timer:foo?period=5000"/> <loop> <simple>5</simple> <setBody> <method ref="helloBean" method="hello"></method> </setBody> <log message="* The message contains ${body}"/> <log message="***** The message contains ${body}"/> <to uri="mock:result"/> </loop> </route>