diff options
| author | Michael Klishin <michael@novemberain.com> | 2017-08-11 01:15:06 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-11 01:15:06 +0300 |
| commit | 433c3ce8d1564825e503b1338838e3bcb7900517 (patch) | |
| tree | c9f9a01dbfd305b5d5235de9153104a3a007b587 | |
| parent | c8de5f78d736a952b7bd620570a21c95e4277fda (diff) | |
| download | rabbitmq-server-git-433c3ce8d1564825e503b1338838e3bcb7900517.tar.gz | |
Closes #1330
Current management plugin config schema uses `day` instead of
`24hours`: https://github.com/rabbitmq/rabbitmq-management/blob/master/priv/schema/rabbitmq_management.schema.
| -rw-r--r-- | docs/rabbitmq.conf.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/rabbitmq.conf.example b/docs/rabbitmq.conf.example index 68ce59326e..094e210377 100644 --- a/docs/rabbitmq.conf.example +++ b/docs/rabbitmq.conf.example @@ -468,10 +468,10 @@ ## lengths) is retained. Please read the plugin's documentation in ## http://www.rabbitmq.com/management.html#configuration for more ## details. -## Your can use 'minute', 'hour' and '24hours' keys or integer key (in seconds) +## Your can use 'minute', 'hour' and 'day' keys or integer key (in seconds) # management.sample_retention_policies.global.minute = 5 # management.sample_retention_policies.global.hour = 60 -# management.sample_retention_policies.global.24hours = 1200 +# management.sample_retention_policies.global.day = 1200 # management.sample_retention_policies.basic.minute = 5 # management.sample_retention_policies.basic.hour = 60 |
