| | 2 | |
|---|
| | 3 | == 1094:1095 == |
|---|
| | 4 | |
|---|
| | 5 | With 1095 comes new required config stuff in stratcon.conf to keep things working... You'll want (to achieve unaltered behaviour) |
|---|
| | 6 | |
|---|
| | 7 | Add: |
|---|
| | 8 | |
|---|
| | 9 | {{{ |
|---|
| | 10 | <modules directory="%modulesdir%"> |
|---|
| | 11 | <generic image="stomp_driver" name="stomp_driver"/> |
|---|
| | 12 | </modules> |
|---|
| | 13 | }}} |
|---|
| | 14 | |
|---|
| | 15 | right after the logs section (obviously order doesn't actually matter here) |
|---|
| | 16 | |
|---|
| | 17 | And to get stomp working (which is was before this changeset, you need to add the following into the <iep> stanza: |
|---|
| | 18 | |
|---|
| | 19 | {{{ |
|---|
| | 20 | <mq type="stomp"/> |
|---|
| | 21 | }}} |
|---|
| | 22 | |
|---|
| | 23 | If you're using rabbitmq, you'll instead need something like: |
|---|
| | 24 | |
|---|
| | 25 | {{{ |
|---|
| | 26 | <mq type="stomp"> |
|---|
| | 27 | <username>guest</username> |
|---|
| | 28 | <password>guest</password> |
|---|
| | 29 | <exchange>noit.firehose</exchange> |
|---|
| | 30 | </mq> |
|---|
| | 31 | <broker adapter="rabbitmq"/> |
|---|
| | 32 | }}} |
|---|
| | 33 | |
|---|
| | 34 | See the [http://labs.omniti.com/trac/reconnoiter/changeset/1095#file9 changes to stratcon.conf] |
|---|
| | 35 | |
|---|
| | 36 | Also, as with most commits on trunk, this requires reconfiguration ({{{./configure}}}) |
|---|
| | 37 | |
|---|
| | 38 | This changes allows us to add new MQ adapters if we can get openwire protocol working to talk more efficiently via AMQP. |
|---|