diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2015-01-28 14:50:54 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2015-01-28 14:50:54 +0000 |
| commit | 2b5f12eefa2f036676c9f16c00b2075701f9ca65 (patch) | |
| tree | 1cc0b514ab0ed6ac2a9894c20ae73053e94fff84 /src | |
| parent | 05d9b5dbda524e492dfcef81ede5006c5d107da6 (diff) | |
| download | rabbitmq-server-git-2b5f12eefa2f036676c9f16c00b2075701f9ca65.tar.gz | |
First off, remove workaround.
Diffstat (limited to 'src')
| -rw-r--r-- | src/app_utils.erl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/app_utils.erl b/src/app_utils.erl index ad270518ad..87e6fa0b69 100644 --- a/src/app_utils.erl +++ b/src/app_utils.erl @@ -62,13 +62,7 @@ start_applications(Apps, ErrorHandler) -> stop_applications(Apps, ErrorHandler) -> manage_applications(fun lists:foldr/3, - %% Mitigation for bug 26467. TODO remove when we fix it. - fun (mnesia) -> - timer:sleep(1000), - application:stop(mnesia); - (App) -> - application:stop(App) - end, + fun application:stop/1, fun application:start/1, not_started, ErrorHandler, |
