summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkjnilsson <knilsson@pivotal.io>2020-09-03 14:54:17 +0100
committerkjnilsson <knilsson@pivotal.io>2020-09-07 09:42:11 +0100
commitbfad2d5281cef1f6de72f525e5f1ba0b25e1c7ea (patch)
tree31aa38701947b4f3398564cf795da8ace6267d58
parent3ee9af8e8bf5f8fb7e49a0c1b2a5bc4e416f0411 (diff)
downloadrabbitmq-server-git-bfad2d5281cef1f6de72f525e5f1ba0b25e1c7ea.tar.gz
Add a couple of more fields to overview
-rw-r--r--src/rabbit_fifo.erl5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rabbit_fifo.erl b/src/rabbit_fifo.erl
index fef1104a8b..7745789593 100644
--- a/src/rabbit_fifo.erl
+++ b/src/rabbit_fifo.erl
@@ -703,7 +703,10 @@ overview(#?MODULE{consumers = Cons,
max_bytes => Cfg#cfg.max_bytes,
consumer_strategy => Cfg#cfg.consumer_strategy,
max_in_memory_length => Cfg#cfg.max_in_memory_length,
- max_in_memory_bytes => Cfg#cfg.max_in_memory_bytes},
+ max_in_memory_bytes => Cfg#cfg.max_in_memory_bytes,
+ expires => Cfg#cfg.expires,
+ delivery_limit => Cfg#cfg.delivery_limit
+ },
#{type => ?MODULE,
config => Conf,
num_consumers => maps:size(Cons),