typo: ManagedBrowsableEndpoint qeue should be queue ---------------------------------------------------
Key: CAMEL-2851 URL: https://issues.apache.org/activemq/browse/CAMEL-2851 Project: Apache Camel Issue Type: Bug Components: camel-core Affects Versions: 2.3.0 Reporter: Karl Palsson Priority: Trivial {code} @ManagedOperation(description = "Current number of Exchanges in Queue") public long qeueSize() { return endpoint.getExchanges().size(); } {code} Should be {code} @ManagedOperation(description = "Current number of Exchanges in Queue") public long queueSize() { return endpoint.getExchanges().size(); } {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.