From 89f598e4299ad1c7b748da1bebc49cadbe8a8ed2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 26 Dec 2019 18:55:01 -0500 Subject: [PATCH] Fix another instance of selector name --- client-api/pvc-api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-api/pvc-api.py b/client-api/pvc-api.py index 80a597c2..93baa312 100755 --- a/client-api/pvc-api.py +++ b/client-api/pvc-api.py @@ -1056,7 +1056,7 @@ class API_VM_Metadata(Resource): @RequestParser([ { 'name': 'limit' }, - { 'name': 'selector', 'choices': ('mem', 'vcpu', 'load', 'vms'), 'helptext': "A valid selector must be specified" }, + { 'name': 'selector', 'choices': ('mem', 'vcpus', 'load', 'vms'), 'helptext': "A valid selector must be specified" }, { 'name': 'autostart' }, ]) @Authenticator @@ -1079,7 +1079,7 @@ class API_VM_Metadata(Resource): description: The selector used to determine candidate nodes during migration enum: - mem - - vcpu + - vcpus - load - vms - in: query