From 3e3bfe77f53f89e74eb5a93cdeca17c2a2fa66f8 Mon Sep 17 00:00:00 2001 From: "Mark T. Voelker" Date: Fri, 8 Aug 2014 10:36:04 -0400 Subject: [PATCH] Fix docstring for scheduler_default_filters param The docstring for the nova::scheduler::filter::scheduler_default_filters paramater tells the user to specify it as a comma-separated string. In actuality, the param is passed into stdlib's join() function, so it's actually expecting an array. This patch updates the documentation accordingly. Change-Id: Ib0b2757d4ddf0d9821aac8a1537e1338f69e1d69 Closes-bug: 1354477 --- manifests/scheduler/filter.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/scheduler/filter.pp b/manifests/scheduler/filter.pp index b58d27eb7..c4323951b 100644 --- a/manifests/scheduler/filter.pp +++ b/manifests/scheduler/filter.pp @@ -49,7 +49,7 @@ # Defaults to 'nova.scheduler.filters.all_filters' # # [*scheduler_default_filters*] -# (optional) A comma separated list of filters to be used by default +# (optional) An array of filters to be used by default # Defaults to false # # [*scheduler_weight_classes*]