summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* refactors the sed bits inside the MakefileAlvaro Videla2012-12-062-21/+13
|
* moves sed invocation to bash scriptAlvaro Videla2012-11-282-17/+21
|
* renames package to include "mac" in itAlvaro Videla2012-11-281-2/+2
|
* cosmeticsAlvaro Videla2012-11-281-3/+3
|
* removes empty folder from the releaseAlvaro Videla2012-11-281-0/+3
|
* refactors code to extract/load plugin codeAlvaro Videla2012-11-281-14/+8
|
* removes unnecessary commentAlvaro Videla2012-11-281-1/+0
|
* removes unreachable expressionAlvaro Videla2012-11-281-2/+1
|
* cleans up unused/duplicated functionsAlvaro Videla2012-11-161-15/+3
|
* cosmetics + commentsAlvaro Videla2012-11-161-5/+29
|
* removes todo commentAlvaro Videla2012-11-161-1/+0
|
* moves the sed invocation to its own targetAlvaro Videla2012-11-161-10/+17
|
* fixes erlc invocation for rabbit_release.erlAlvaro Videla2012-11-161-1/+2
|
* moves rabbit_release to the standalone packaging folderAlvaro Videla2012-11-161-0/+0
|
* renames generated tarballAlvaro Videla2012-11-161-2/+2
|
* renames release folder to standaloneAlvaro Videla2012-11-161-0/+2
|
* moves files from mac folder to release folderAlvaro Videla2012-11-161-0/+0
|
* replaces boot files accordingly in rabbitmq-defaultsAlvaro Videla2012-11-091-4/+11
|
* specifies boot file for erl callsAlvaro Videla2012-11-094-5/+5
|
* adds file to generate the erlang releaseAlvaro Videla2012-11-071-0/+148
|
* adds Makefile for standalone mac releaseAlvaro Videla2012-11-071-0/+61
|
* adds the erlang base dir before calling erlAlvaro Videla2012-11-074-4/+12
|
* Merged bug23935 into defaultEmile Joubert2012-11-046-39/+71
|\
| * I know, why don't we get those the right way round? *headdesk*Simon MacMullen2012-11-011-1/+1
| |
| * feeding of vertical alignment obsessionMatthias Radestock2012-11-011-3/+3
| |
| * Unify address and host. Stick ports in the state, just because we're ↵Simon MacMullen2012-11-014-49/+42
| | | | | | | | grabbing them anyway.
| * More clarity.Simon MacMullen2012-10-311-2/+4
| |
| * Store name, host and peerhost as binary in the first place.Simon MacMullen2012-10-302-7/+8
| |
| * merge default into bug23935Matthias Radestock2012-10-295-20/+56
| |\
| | * These should be binary.Simon MacMullen2012-10-291-2/+2
| | |
| | * Merge defaultSimon MacMullen2012-10-2930-378/+921
| | |\
| | * \ merge headsSimon MacMullen2012-10-222-10/+9
| | |\ \
| | | * | I feel a great sadness.Simon MacMullen2012-10-191-1/+1
| | | | |
| | | * | Move host and peer_host to creattion since they will not change now.Simon MacMullen2012-10-191-9/+8
| | | | |
| | * | | cosmeticMatthias Radestock2012-10-191-1/+1
| | |/ /
| | * | OopsSimon MacMullen2012-10-191-3/+0
| | | |
| | * | OK, I prefer this. Patch the dns lookups into connection_string, this makes ↵Simon MacMullen2012-10-193-25/+37
| | | | | | | | | | | | | | | | names come out correctly for channels, stomp, mqtt and means we can remove some special casing from mgmt. Remove the extra process. Add a mechanism to disable the whole thing in case people have broken configs.
| | * | Symmetry. Link to the spawned process. Remove i/2 grossness.Simon MacMullen2012-10-192-9/+29
| | | |
| | * | Merge defaultSimon MacMullen2012-10-192-4/+14
| | |\ \
| | | * | First pass at reverse DNS lookups for clients.Simon MacMullen2012-10-012-4/+14
| | | | |
* | | | | be more assertive in property decodingMatthias Radestock2012-11-041-1/+1
| | | | |
* | | | | cosmeticMatthias Radestock2012-11-031-41/+43
| | | | |
* | | | | cosmetic: vertical alignment / shrinkageMatthias Radestock2012-11-032-81/+42
| | | | |
* | | | | Merge bug23225Simon MacMullen2012-11-024-34/+63
|\ \ \ \ \
| * | | | | only trigger stats emission from writers in the serverMatthias Radestock2012-11-023-16/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (and not the Erlang client) The server (and *only* the server) starts channels with rabbit_channel_sup:start_link({tcp, ...}). Writers are created as part of that. We pass an extra argument to rabbit_writer:start_link in this case, indicating that the reader wants be told by the writer to emit stats. Internally, the writer handles the stats/no_stats distinction by initialising the stats timer differently. We introduce a new function to create a disabled stats timer, thus taking advantage of all the existing logic in rabbit_event that suppresses timer/stats operations when stats are disabled. This approach requires inclusion of rabbit_event in rabbit_common.
| * | | | | ensure connection stats emission for write-only connectionsMatthias Radestock2012-11-012-30/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We set up a stats timer in the writers but rather emitting any stats directly from there we just get them to 'ping' the reader, which will then emit stats based on its own timer. The timer in the writer is created when a socket operation has been confirmed. a little bit of drive-by refactoring to make implementation easier: - move state creation into one place - move reader into state TODO: suppress all this when in the Erlang client
* | | | | | Merge bug25262Simon MacMullen2012-11-011-1/+1
|\ \ \ \ \ \
| * \ \ \ \ \ Merge bug25263Simon MacMullen2012-11-010-0/+0
| |\ \ \ \ \ \ | | |/ / / / /
| * | | | | | fix heinous bugMatthias Radestock2012-11-011-1/+1
| |/ / / / /
* | | | | | sort list_* resultsMatthias Radestock2012-11-011-1/+1
|/ / / / /