summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* No longer call cleandb from clean.bug21189Tony Garnock-Jones2009-07-201-1/+1
|
* Make cleandb no longer stop the nodeTony Garnock-Jones2009-07-161-1/+1
|
* merge bug21060 into defaultMatthias Radestock2009-07-010-0/+0
|\
* | better exception tagbug21060Matthias Radestock2009-07-011-1/+1
| |
* | fix another off-by-one errorMatthias Radestock2009-07-011-1/+1
| |
* | foldMatthias Radestock2009-07-011-9/+6
| |
* | Fix off-by-one error (discovered by Matthias)Tony Garnock-Jones2009-07-011-1/+1
| |
* | cosmeticMatthias Radestock2009-07-011-23/+19
| |
* | Convenience rabbit_basic functions.Tony Garnock-Jones2009-06-222-11/+59
|/
* Updated portfile for 1.6.0 releaseTim Clark2009-06-181-4/+4
|
* tabs -> spacesMatthias Radestock2009-06-186-25/+25
|
* TMPDIR should be honoured by MakefileMatthew Sackman2009-06-181-2/+6
|
* Added tag rabbitmq_v1_6_0 for changeset 1588df06f913Matthias Radestock2009-06-160-0/+0
|
* add package changelog entries for 1.6.0 releaserabbitmq_v1_6_0Matthias Radestock2009-06-162-0/+9
|
* merge bug20961 into defaultMatthias Radestock2009-06-163-3/+5
|\
| * emergency merge of bug20958 into defaultMatthias Radestock2009-06-166-142/+142
| |\ | | | | | | | | | further qa is still required
| | * merge bug20979 into defaultMatthias Radestock2009-06-162-1/+3
| | |\
| | | * merge bug20976 into defaultMatthias Radestock2009-06-160-0/+0
| | | |\
| | | * | Altered dependencies and added comment to the appbug20976Matthew Sackman2009-06-122-2/+4
| | | |/
| | * | cleandb is now an rm -rf and build depends not on mnesiabug20979Matthew Sackman2009-06-122-2/+2
| | |/
| * | FIx for escaping of argumentsbug20958Tim Clark2009-06-141-11/+1
| | |
* | | Fixing up escaping of commandline argumentsbug20961Tim Clark2009-06-141-11/+1
| | |
* | | Attempt to fix regexp in PortfileTim Clark2009-06-121-4/+4
| | |
* | | Changes to version and checksumsTim Clark2009-06-121-4/+4
| |/ |/|
* | merging in bug20943Matthew Sackman2009-06-111-129/+120
|\ \
| * | refactoring: rename "round robin" to "active consumers"bug20943Matthias Radestock2009-06-101-27/+31
| | |
| * | proper round-robining even when blockingMatthias Radestock2009-06-101-124/+111
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This involved some substantial changes to the queue internal data structures - mostly by choice; the new design is cleaner: - We no longer keep a list of consumers in the channel records. Now the channel records just contain a consumer count instead, and that's only there for efficiency so we can more easily tell when we need to register/unregister with the limiter. - We now keep *two* consumer queues - one of active consumers (that's the one we've always had) and one of blocked consumers. We round-robin on the first one as before, and move things between the two queues when blocking/unblocking channels. When doing so the relative order of a channel's consumers is preserved, so the effects of any round-robining the active consumers get carried through to the blocked consumers when they get blocked and then back to the active consumers when they get unblocked.
* | emergency merge of bug20958 into defaultMatthias Radestock2009-06-103-14/+21
|\ \ | |/ |/| | | | | | | We point to the macports files of the default branch from our web site and they got broken with the merge of bug20333. This hopefully fixes that, but further qa is required.
| * merge in bug20955Matthew Sackman2009-06-101-4/+11
| |\
| | * respect channel blocking when adding consumersbug20955Matthias Radestock2009-06-101-4/+11
| |/
| * Merge bug20801 into defaultHubert Plociniczak2009-06-101-8/+10
| |\
| | * Merge two default branches into one.Hubert Plociniczak2009-06-103-23/+50
| | |\
| | * | fix off-by-one errorMatthias Radestock2009-06-101-1/+1
| | | | | | | | | | | | | | | | not that it really matters much
| | * | cosmeticMatthias Radestock2009-06-101-7/+9
| | | |
| * | | Use dist macro for building correct distribution versions.bug20801Hubert Plociniczak2009-06-102-5/+3
| | |/ | |/|
* | | Removed default shell, changed wrapper to work without default shelltimc2009-06-102-2/+2
| | |
* | | Creates rabbitmq user with a default shell and uses correct arguments to the ↵timc2009-06-102-3/+3
|/ / | | | | | | os x su command
* | Merge from bug20333 post verificationtimc2009-06-103-23/+50
|\ \ | |/ |/|
| * remove/add files missed on previous commitbug20333Matthias Radestock2009-04-062-2/+23
| |
| * use wrapper scripts in macportsMatthias Radestock2009-04-061-21/+27
| |
* | merge bug20940 into defaultMatthias Radestock2009-06-102-9/+12
|\ \
| * | cosmeticbug20940Matthias Radestock2009-06-101-6/+7
| | |
| * | Made can_send/2 into can_send/3.Matthew Sackman2009-06-092-9/+11
|/ /
* | merging in bug20782Matthew Sackman2009-06-088-81/+103
|\ \
| * | clean up tx records in queues when a transaction's channel diesbug20782Matthias Radestock2009-06-054-23/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously queues were only monitoring channels with subscribers or to which ack-requiring messages had been delivered. Now queues also monitor channels from which they have received transactional publishes. Queues record the last tx id they have seen from a channel. This then makes it easy and efficient to find the associated tx record in the queue's process dictionary when a channel process dies - the alternative would be to scan the tx records for matching channel pids - and perform the required rollback activities for the tx.
| * | refactoring: bundle up all the data for a publishMatthias Radestock2009-06-057-64/+66
|/ / | | | | | | | | Passing this around as separate args was becoming a pain. Also, now it's easier to add more data items.
* | Split out internal_declare/2.Tony Garnock-Jones2009-06-041-2/+10
| |
* | merge bug20633 into defaultMatthew Sackman2009-06-041-16/+24
|\ \
| * | make delete_binding return an error when the binding does not existbug20633Matthias Radestock2009-06-021-16/+24
| | | | | | | | | | | | | | | This required some refactoring in order to avoid duplication of the code that constructs #binding records.
* | | merge bug20877 into defaultMatthias Radestock2009-06-030-0/+0
|\ \ \