From e5106870e3e6375c309be9dc814b79968a3e1737 Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Wed, 19 Apr 2017 10:03:52 -0500 Subject: [PATCH] Improve help for periodic message_reap_interval The help text that went with the message_reap_interval wasn't clear and didn't include the time unit that was being used. This patch improves the wording and indicates the value is seconds. Change-Id: Idbcd2c2d516adc361fd8a102b9b38afaefcff40b --- cinder/message/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinder/message/api.py b/cinder/message/api.py index 0e5d318ee50..db42b0ddff7 100644 --- a/cinder/message/api.py +++ b/cinder/message/api.py @@ -26,7 +26,8 @@ messages_opts = [ cfg.IntOpt('message_ttl', default=2592000, help='message minimum life in seconds.'), cfg.IntOpt('message_reap_interval', default=86400, - help='interval between period task to clean expired messages.') + help='interval between periodic task runs to clean expired ' + 'messages in seconds.') ]