Correct retention days

There was an error where the rention days was 2x greater than it was
supposed to be.

Change-Id: I9e9451e4381a32c0b2857eb75689561d3517b8d7
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2018-07-24 09:35:53 -05:00
parent dc68c35a4c
commit 5564e7a9cb
No known key found for this signature in database
GPG Key ID: 9443251A787B9FB3

View File

@ -21,7 +21,7 @@
{% set _ = delete_indices.update(
{
'action': 'delete_indices',
'description': 'Prune indices for ' + key + ' after ' ~ ((index_retention | int) * 2) ~ ' days.',
'description': 'Prune indices for ' + key + ' after ' ~ (index_retention | int) ~ ' days.',
'options': {
'ignore_empty_list': true,
'disable_action': false