Bug 1254590
| Summary: | AMQP 1.0 jms client ignores failover.useReconnectBackOff value | ||
|---|---|---|---|
| Product: | Red Hat Enterprise MRG | Reporter: | Michal Toth <mtoth> |
| Component: | qpid-java | Assignee: | Robbie Gemmell <rgemmell> |
| Status: | CLOSED NOTABUG | QA Contact: | Messaging QE <messaging-qe-bugs> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 3.2 | CC: | iboverma, jross, smumford |
| Target Milestone: | 3.2 | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2015-08-20 15:40:06 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 1215806 | ||
|
Description
Michal Toth
2015-08-18 13:21:34 UTC
( Copy of comment from: https://issues.jboss.org/browse/ENTMQCL-13?focusedCommentId=13099846&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13099846 ) I believe this is because the URI being used isnt in the documented format (e.g detailed at: http://qpid.apache.org/releases/qpid-jms-0.4.0/docs/index.html#failover-configuration-options). The documented format looks like: {noformat} failover:(brokerURI1[,brokerURI2])?<failover.options>&<failover.nested.options> {noformat} whereas the format being used here is: {noformat} failover:amqp://localhost:5672?<jms.options>&<failover.options>. {noformat} In the above case it isnt distinguishable [without the documented use of parethesis] that the stuff after the ? isn't part of the broker URI, and so it had no effect on the failover layer but was instead treated as part of the broker uri. The 'failover.' options were presumably then not collected for use by the JMS/transport layers when given the URI because they dont match the relevant prefix those layers use. Adding the parethesis as documented should get things going. Michal Toth <mtoth> updated the status of jira ENTMQCL-13 to Closed Closing BZ to match the JIRA, Michal confirmed things work with the URI update. |