| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Simplifying refactor | Tim Watson | 2014-02-18 | 2 | -76/+11 |
| | | | | | | | | | Since the "rabbit" process /always/ starts before everything else, handle boot table creation at that point and avoid the ets ownership issue and corresponding messiness. The previous worries about handling situations where we want to run rabbit_boot code whilst rabbit is offline aren't an issue for us. | ||||
| * | Use a gen_server to keep the boot steps table around | Tim Watson | 2014-02-18 | 2 | -81/+83 |
| | | |||||
| * | Merge default into bug24926 | Tim Watson | 2014-02-18 | 10 | -218/+539 |
| |\ | |||||
| | * | Merge default into bug24926 | Tim Watson | 2014-02-17 | 8 | -65/+98 |
| | |\ | |||||
| | * | | Avoid verbosity | Tim Watson | 2014-02-17 | 1 | -9/+6 |
| | | | | |||||
| | * | | Don't bother printing out reload errors | Tim Watson | 2014-02-17 | 1 | -1/+1 |
| | | | | |||||
| | * | | Simplify | Tim Watson | 2014-02-17 | 1 | -3/+2 |
| | | | | |||||
| | * | | If you're going to catch, actually handle failures | Tim Watson | 2014-02-17 | 1 | -1/+1 |
| | | | | |||||
| | * | | Cosmetic (ish) | Tim Watson | 2014-02-17 | 1 | -4/+1 |
| | | | | |||||
| | * | | merge default into bug24926 | Tim Watson | 2014-02-11 | 10 | -218/+546 |
| | |\ \ | |||||
| | | * | | Refactor - remove unused functions/comments/todos | Tim Watson | 2014-01-12 | 5 | -40/+14 |
| | | | | | |||||
| | | * | | Merge default into bug24926 | Tim Watson | 2014-01-12 | 19 | -82/+137 |
| | | |\ \ | |||||
| | | * | | | Refactor (simplify application stop handling) | Tim Watson | 2014-01-12 | 2 | -50/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The offline plugin handling does a fine job of detecting which apps need to be stopped/unloaded when disabling a plugin at runtime. We previously had problems accidentally stopping things like stdlib and mnesia by accident, but only because we went searching for the app dependencies ourselves! Instead, we stop only those applications (i.e., plugins) that rabbit_plugins_main has requested. In doing so, we remove a considerable amount of (new) digraph hacking from app_utils and reduce the complexity of rabbit_boot somewhat. | ||||
| | | * | | | Handle hard vs. soft boot step dependencies | Tim Watson | 2014-01-10 | 1 | -15/+37 |
| | | | | | | |||||
| | | * | | | Merge default into bug24926 | Tim Watson | 2014-01-10 | 30 | -971/+1451 |
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | Merge conflicts in rabbit.erl, pertaining to app startup procedure. | ||||
| | | * | | | | Tidy/Refactor boot step handling | Tim Watson | 2013-12-16 | 1 | -14/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify the boot step loading/application code and switch from using a discrete rabbit_cleanup_step module attribute; We now search the regular boot steps directly for ‘cleanup’ entries. | ||||
| | | * | | | | refactor (renaming) | Tim Watson | 2013-11-26 | 2 | -4/+4 |
| | | | | | | | |||||
| | | * | | | | De-duplicate dependency/graph building functions | Tim Watson | 2013-11-26 | 2 | -26/+40 |
| | | | | | | | |||||
| | | * | | | | Remove lots of io:format debugging and tidy up rpc error messages | Tim Watson | 2013-11-26 | 2 | -14/+12 |
| | | | | | | | |||||
| | | * | | | | Re-work boot step handling | Tim Watson | 2013-11-21 | 3 | -46/+146 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to support interleaving plugin boot steps with rabbit’s own (internal) ones during the boot/start sequence, and also running them independently during runtime activation. This commit also drops the use of an ets table to track which cleanup steps we’ve run, and simplifies the boot step execution procedures. | ||||
| | | * | | | | Refactor (de-duplicate) module attribute search | Tim Watson | 2013-11-20 | 1 | -16/+17 |
| | | | | | | | |||||
| | | * | | | | Various boot procedure improvements | Tim Watson | 2013-11-20 | 4 | -37/+91 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We ensure that all dependent applications are stopped, but also that dependencies shared by multiple applications (e.g., amqp_client) are not. | ||||
| | | * | | | | merge default into bug24926 | Tim Watson | 2013-11-18 | 7 | -56/+113 |
| | | |\ \ \ \ | |||||
| | | * | | | | | Rework boot step handling | Tim Watson | 2013-11-18 | 2 | -8/+14 |
| | | | | | | | | |||||
| | | * | | | | | handle cleanup steps properly | Tim Watson | 2013-11-06 | 1 | -13/+18 |
| | | | | | | | | |||||
| | | * | | | | | track boot status throughout a node's lifetime | Tim Watson | 2013-11-06 | 2 | -55/+111 |
| | | | | | | | | |||||
| | | * | | | | | Allow offline plugin re-configuration | Tim Watson | 2013-11-05 | 1 | -1/+4 |
| | | | | | | | | |||||
| | | * | | | | | Ensure we pass the nodename on windows | Tim Watson | 2013-11-05 | 1 | -1/+5 |
| | | | | | | | | |||||
| | | * | | | | | Allow for runtime disabling of plugins | Tim Watson | 2013-11-05 | 4 | -17/+53 |
| | | | | | | | | |||||
| | | * | | | | | Restructure our boot procedure for more flexible boot-step handling | Tim Watson | 2013-11-05 | 6 | -147/+245 |
| | | | | | | | | |||||
| * | | | | | | | Merge bug25868 | Simon MacMullen | 2014-02-18 | 0 | -0/+0 |
| |\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | |||||
| * | | | | | | | Oops | Simon MacMullen | 2014-02-17 | 1 | -1/+0 |
| | | | | | | | | |||||
| * | | | | | | | ...but only do that if we are not also alarmed. | Simon MacMullen | 2014-02-17 | 1 | -2/+4 |
| | | | | | | | | |||||
| * | | | | | | | Show state as 'flow' if we are currently flow blocked and have been so for ↵ | Simon MacMullen | 2014-02-17 | 2 | -6/+8 |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | more than 5s. | ||||
| * | | | | | | Merge bug25627 (again) | Simon MacMullen | 2014-02-17 | 48 | -1097/+1628 |
| |\ \ \ \ \ \ | |||||
| | * \ \ \ \ \ | Merge bug25627 | Simon MacMullen | 2014-02-17 | 1 | -1/+7 |
| | |\ \ \ \ \ \ | |||||
| | * \ \ \ \ \ \ | stable to default | Simon MacMullen | 2014-02-17 | 2 | -8/+10 |
| | |\ \ \ \ \ \ \ | |||||
| | | * \ \ \ \ \ \ | Merge bug 26014 | Simon MacMullen | 2014-02-17 | 0 | -0/+0 |
| | | |\ \ \ \ \ \ \ | |||||
| | | * | | | | | | | | Don't call InnerFun and remove/3 if the binding was not there. | Simon MacMullen | 2014-02-17 | 1 | -7/+9 |
| | | |/ / / / / / / | |||||
| | | * | | | | | | | Fix a syntax error in config example | Michael Klishin | 2014-01-24 | 1 | -1/+1 |
| | | | | | | | | | | |||||
| | * | | | | | | | | merge bug25853 into default | Matthias Radestock | 2014-02-13 | 3 | -49/+66 |
| | |\ \ \ \ \ \ \ \ | |||||
| | | * \ \ \ \ \ \ \ | merge default into bug25853 | Matthias Radestock | 2014-02-10 | 1 | -6/+13 |
| | | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | since the previous merge pulled in a breakage | ||||
| | | * | | | | | | | | | rabbit_file:wildcard/2 should return [] if the dir is non-existing | Tim Watson | 2014-02-10 | 1 | -3/+6 |
| | | | | | | | | | | | | |||||
| | | * | | | | | | | | | oops | Matthias Radestock | 2014-02-10 | 1 | -1/+1 |
| | | | | | | | | | | | | |||||
| | | * | | | | | | | | | merge default into bug25853 | Matthias Radestock | 2014-02-10 | 32 | -566/+931 |
| | | |\ \ \ \ \ \ \ \ \ | |||||
| | | * | | | | | | | | | | cosmetic | Matthias Radestock | 2014-02-10 | 1 | -6/+4 |
| | | | | | | | | | | | | | |||||
| | | * | | | | | | | | | | rename misleading variables | Matthias Radestock | 2014-02-06 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...and fix a counting error | ||||
| | | * | | | | | | | | | | simplifying refactor | Matthias Radestock | 2014-02-06 | 1 | -17/+14 |
| | | | | | | | | | | | | | |||||
| | | * | | | | | | | | | | Use dirty opts to find durable queues during startup (and optimise) | Tim Watson | 2014-02-05 | 1 | -4/+3 |
| | | | | | | | | | | | | | |||||
| | | * | | | | | | | | | | Simplify durable queue recovery and avoid a dict lookup on the results | Tim Watson | 2014-02-05 | 1 | -12/+6 |
| | | | | | | | | | | | | | |||||
