Hi, Camel 2.9.0 apparently does not require that URI parameters are part of the URI on both consumer and producer side of a VM queue, while 2.9.1 and 2.9.2 does. Is this by purpose or mistake?
For example, I had a test which was using a ProducerTemplate to test a route: template().requestBody("vm:MyReceiver", request); and the route: from("vm:MyReceiver?concurrentConsumers=1")... This worked in 2.9.0 but not with 2.9.1 and 2.9.2 until i changed the test to do: template().requestBody("vm:MyReceiver?concurrentConsumers=1", request); Takk, Thomas