From 18e63b757b9b96761526ebf650d67ae5eb8d8456 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 19 Nov 2010 21:19:54 +0100 Subject: [PATCH] cmdlib: Use _POutputFields where possible Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/cmdlib.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 3ca6d3f9d..267e4e81f 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -3513,8 +3513,8 @@ class LUQueryNodeVolumes(NoHooksLU): """ _OP_PARAMS = [ + _POutputFields, ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString)), - ("output_fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString)), ] REQ_BGL = False _FIELDS_DYNAMIC = utils.FieldSet("phys", "vg", "name", "size", "instance") @@ -3596,9 +3596,9 @@ class LUQueryNodeStorage(NoHooksLU): """ _FIELDS_STATIC = utils.FieldSet(constants.SF_NODE) _OP_PARAMS = [ + _POutputFields, ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString)), ("storage_type", ht.NoDefault, _CheckStorageType), - ("output_fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString)), ("name", None, ht.TMaybeString), ] REQ_BGL = False @@ -5330,7 +5330,7 @@ class LUQueryInstances(NoHooksLU): """ # pylint: disable-msg=W0142 _OP_PARAMS = [ - ("output_fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString)), + _POutputFields, ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString)), ("use_locking", False, ht.TBool), ] -- GitLab