I am creating an endpoint as follows using camel-rabbitmq (2.12.2). The endpoint works fine, but appears to be doing an acknowledge even though autoAck=false.
String endpoint = "rabbitmq://" + host + ":" + port + "/" + exchange + "?username=" + username + "&password=" + password + "&queue=" + queue + "&vhost=" + vhost + "&routingKey=" + routingKey + "&exchangeType=fanout" + "&durable=true&autoDelete=false&autoAck=false"; Any ideas or are others experiencing something similar? If it is a bug, any ideas for a workaround? Thanks, John H. Clark