diff options
| author | Alvaro Videla <videlalvaro@gmail.com> | 2015-05-06 16:15:09 +0200 |
|---|---|---|
| committer | Alvaro Videla <videlalvaro@gmail.com> | 2015-05-06 16:15:09 +0200 |
| commit | 443e6fb931839d76d2ceb8c455e7f5b0e70ddd26 (patch) | |
| tree | 91cb3ac096fb004e3d5d65d94f9f6771c467e899 /src | |
| parent | 65086af4762c9f4fa84a77c82dbda0c27471237f (diff) | |
| download | rabbitmq-server-git-443e6fb931839d76d2ceb8c455e7f5b0e70ddd26.tar.gz | |
removes dictionary from the PROCESS_INFO keys
Fixes rabbitmq/rabbitmq-server#148
Diffstat (limited to 'src')
| -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 9fc0fabda9..3123c59410 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]). |
