Description
Hello,
since Camel Version 3.6 simple language operator "starts with" / "startsWith" is buggy.
This works with camel 3.5
- .when(simple("${body} starts with '010'"))
- .when(simple("${body} startsWith '010'"))
- .when(bodyAs(String.class).startsWith("010"))
This works with camel 3.6 only
- .when(bodyAs(String.class).startsWith("010"))
See also TestCase StartsWithTest.java.
Regards.
Attachments
Attachments
Issue Links
- is broken by
-
CAMEL-15587 simple/bean language - performance regression
- Resolved