diff options
author | Alvaro Videla <videlalvaro@gmail.com> | 2015-05-06 16:15:09 +0200 |
---|---|---|
committer | Michael Klishin <michael@clojurewerkz.org> | 2016-11-03 09:51:48 +0000 |
commit | 5198eabb6af1ec822a14f3c27b181f60db5d698b (patch) | |
tree | 97a5d030955aa1b546597affbf7581463b918b82 | |
parent | 61a5fd3950a5b34f596c48214c9299c7f4d4d582 (diff) | |
download | rabbitmq-server-git-v3.5.x.tar.gz |
removes dictionary from the PROCESS_INFO keysrabbitmq_v3_5_8v3.5.x
Fixes rabbitmq/rabbitmq-server#148
-rw-r--r-- | src/rabbit_diagnostics.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_diagnostics.erl b/src/rabbit_diagnostics.erl index 531f3f922e..a611a24e1c 100644 --- a/src/rabbit_diagnostics.erl +++ b/src/rabbit_diagnostics.erl @@ -17,8 +17,8 @@ -module(rabbit_diagnostics). -define(PROCESS_INFO, - [registered_name, current_stacktrace, initial_call, dictionary, - message_queue_len, links, monitors, monitored_by, heap_size]). + [registered_name, current_stacktrace, initial_call, message_queue_len, + links, monitors, monitored_by, heap_size]). -export([maybe_stuck/0, maybe_stuck/1, top_memory_use/0, top_memory_use/1, top_binary_refs/0, top_binary_refs/1]). |