diff options
author | Simon MacMullen <simon@rabbitmq.com> | 2013-05-29 16:40:14 +0100 |
---|---|---|
committer | Simon MacMullen <simon@rabbitmq.com> | 2013-05-29 16:40:14 +0100 |
commit | dc26293584e7fa45d86c44858b2c400cfb9d68fb (patch) | |
tree | be82c605be9d405ad3285ef160fc781923573292 | |
parent | c27b83342d1d8ada3fc8a23c058a475a3fbb3578 (diff) | |
download | rabbitmq-server-dc26293584e7fa45d86c44858b2c400cfb9d68fb.tar.gz |
Just in case this times out, let's not explode.
-rw-r--r-- | src/rabbit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index f65a8d68..37ed5ae0 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -393,7 +393,7 @@ await_startup() -> status() -> S1 = [{pid, list_to_integer(os:getpid())}, - {running_applications, application:which_applications()}, + {running_applications, catch application:which_applications()}, {os, os:type()}, {erlang_version, erlang:system_info(system_version)}, {memory, rabbit_vm:memory()}], |