diff options
author | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-06-23 16:13:33 +0100 |
---|---|---|
committer | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-06-23 16:13:33 +0100 |
commit | 3b23a9ad37253fd0b3a2a6f920ee0d7549285d40 (patch) | |
tree | 4b87b877a414869a368fff0ea64d5400e0d23f23 | |
parent | 7fcf648d2dc813de187c08180a79641a19c599e9 (diff) | |
download | rabbitmq-server-bug22882.tar.gz |
ssl works againbug22882
-rw-r--r-- | ebin/rabbit_app.in | 4 | ||||
-rw-r--r-- | src/rabbit_networking.erl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index bdf407eb..ce94cafe 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -11,8 +11,8 @@ rabbit_sup, rabbit_tcp_client_sup]}, {applications, [kernel, stdlib, sasl, mnesia, os_mon]}, -%% we also depend on ssl but it shouldn't be in here as we don't -%% actually want to start it +%% we also depend on crypto, public_key and ssl but they shouldn't be +%% in here as we don't actually want to start it {mod, {rabbit, []}}, {env, [{tcp_listeners, [{"0.0.0.0", 5672}]}, {ssl_listeners, []}, diff --git a/src/rabbit_networking.erl b/src/rabbit_networking.erl index c3d0b7b7..68ffc98a 100644 --- a/src/rabbit_networking.erl +++ b/src/rabbit_networking.erl @@ -102,7 +102,7 @@ boot_ssl() -> {ok, []} -> ok; {ok, SslListeners} -> - ok = rabbit_misc:start_applications([crypto, ssl]), + ok = rabbit_misc:start_applications([crypto, public_key, ssl]), {ok, SslOpts} = application:get_env(ssl_options), [start_ssl_listener(Host, Port, SslOpts) || {Host, Port} <- SslListeners], ok |