diff options
| author | Rob Harrop <rob@rabbitmq.com> | 2011-03-02 21:52:31 +0000 |
|---|---|---|
| committer | Rob Harrop <rob@rabbitmq.com> | 2011-03-02 21:52:31 +0000 |
| commit | 3d02d79df14e104258d1718e8ead409889e843c3 (patch) | |
| tree | 260b605af73ba6b6b8e2b6d597c223437939444a | |
| parent | dcca25d53dccbd4ca2c4645f602181d5be624ccd (diff) | |
| download | rabbitmq-server-git-3d02d79df14e104258d1718e8ead409889e843c3.tar.gz | |
Always specify rabbit application when looking up ssl_options
| -rw-r--r-- | src/rabbit_networking.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_networking.erl b/src/rabbit_networking.erl index c0cb78f560..53be0190e7 100644 --- a/src/rabbit_networking.erl +++ b/src/rabbit_networking.erl @@ -139,7 +139,7 @@ resolve_family(_, F) -> F. ensure_ssl() -> ok = rabbit_misc:start_applications([crypto, public_key, ssl]), - {ok, SslOptsConfig} = application:get_env(ssl_options), + {ok, SslOptsConfig} = application:get_env(rabbit, ssl_options), % unknown_ca errors are silently ignored prior to R14B unless we % supply this verify_fun - remove when at least R14B is required |
