Merge "Drop redundant delay param"

This commit is contained in:
Zuul 2018-01-18 05:33:16 +00:00 committed by Gerrit Code Review
commit d6148195c6
2 changed files with 6 additions and 5 deletions

View File

@ -34,10 +34,6 @@ parameters:
default: 'mysql'
description: The short name of the Gnocchi indexer backend to use.
type: string
MetricProcessingDelay:
default: 30
description: Delay between processing metrics.
type: number
NumberOfStorageSacks:
default: 128
description: Number of storage sacks to create.
@ -107,7 +103,6 @@ outputs:
template: " --sacks-number NUM_SACKS"
params:
NUM_SACKS: {get_param: NumberOfStorageSacks}
gnocchi::storage::metric_processing_delay: {get_param: MetricProcessingDelay}
gnocchi::storage::swift::swift_user: 'service:gnocchi'
gnocchi::storage::swift::swift_auth_version: 3
gnocchi::storage::swift::swift_key: {get_param: GnocchiPassword}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Drop redundant MetricProcessingDelay param from gnocchi base templates.
This is already done in metricd templates, so lets drop it to avoid
duplicates in config file.