Remove bay reference from zun/objects/container.py

Variable in file zun/objects/container.py still has bay in its
name. This patch changes the variable name appropriately.

Change-Id: Ideceae1048aaf198647bd2ef8f1b0e23afe856e8
This commit is contained in:
shubham.git 2016-08-31 21:34:59 +05:30
parent 30d3c0917c
commit 3994d399ab

View File

@ -90,9 +90,9 @@ class Container(base.ZunPersistentObject, base.ZunObject,
:param context: Security context
:returns: a :class:`Container` object.
"""
db_bay = cls.dbapi.get_container_by_name(context, name)
bay = Container._from_db_object(cls(context), db_bay)
return bay
db_container = cls.dbapi.get_container_by_name(context, name)
container = Container._from_db_object(cls(context), db_container)
return container
@base.remotable_classmethod
def list(cls, context, limit=None, marker=None,