Merge "Add OS-SCH-HNT in extensions list" into stable/rocky

This commit is contained in:
Zuul 2019-08-04 19:49:57 +00:00 committed by Gerrit Code Review
commit 14ccd9d258
2 changed files with 12 additions and 1 deletions

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from cinder.api import extensions
from cinder.api.schemas import scheduler_hints
from cinder.api import validation
@ -31,3 +32,13 @@ def create(req, body):
_validate_scheduler_hints(req=req, body=scheduler_hints_body)
body['volume']['scheduler_hints'] = scheduler_hints_body.get(attr)
return body
# NOTE: This class is added to include "OS-SCH-HNT" in the list extensions
# response and "OS-SCH-HNT" is still not loaded as a standard extension.
class Scheduler_hints(extensions.ExtensionDescriptor):
"""Pass arbitrary key/value pairs to the scheduler."""
name = "SchedulerHints"
alias = "OS-SCH-HNT"
updated = "2013-04-18T00:00:00+00:00"

View File

@ -31,7 +31,7 @@ import cinder.policy
CONF = cfg.CONF
LOG = logging.getLogger(__name__)
FILES_TO_SKIP = ['resource_common_manage.py', 'scheduler_hints.py']
FILES_TO_SKIP = ['resource_common_manage.py']
class ExtensionDescriptor(object):