Details
-
Type:
Patch submission
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Incomplete
-
Affects Version/s: 2.0.1
-
Fix Version/s: 2.0.x Backlog
-
Component/s: Transport: JDBC
-
Labels:None
-
Includes test case?:no
-
User impact:High
-
Configuration:
-
Similar Issues:None
Description
I have a component which reads from a JDBC query, by passing in a message with headers (i.e. in the example below, "status"):
public Object onCall(MuleEventContext eventContext) throws Exception { EndpointURI uri = new MuleEndpointURI("jdbc://getFoo1"); MuleMessage response = eventContext.sendEvent(eventContext.getMessage(), uri); Object result = response.getPayload(); return result; }
It's not evaluated, see patch.
I don't see the header "status" in the snippet above.