pyocf: rename static Volume::open() to s_open()
.. to distinguish from exported object open() instance method Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
This commit is contained in:
parent
59d1905139
commit
db2e4ecb68
@ -147,7 +147,7 @@ class Volume:
|
|||||||
print("{}".format(Volume._uuid_))
|
print("{}".format(Volume._uuid_))
|
||||||
return -1
|
return -1
|
||||||
|
|
||||||
return Volume.open(ref, volume)
|
return Volume.s_open(ref, volume)
|
||||||
|
|
||||||
@VolumeOps.CLOSE
|
@VolumeOps.CLOSE
|
||||||
def _close(ref):
|
def _close(ref):
|
||||||
@ -180,7 +180,7 @@ class Volume:
|
|||||||
return Volume._ops_[cls]
|
return Volume._ops_[cls]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def open(ref, volume):
|
def s_open(ref, volume):
|
||||||
if volume.opened:
|
if volume.opened:
|
||||||
return -OcfErrorCode.OCF_ERR_NOT_OPEN_EXC
|
return -OcfErrorCode.OCF_ERR_NOT_OPEN_EXC
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ class CoreVolume(ExpObjVolume):
|
|||||||
self.open()
|
self.open()
|
||||||
|
|
||||||
def open(self):
|
def open(self):
|
||||||
return Volume.open(self.lib.ocf_core_get_front_volume(self.core.handle), self)
|
return Volume.s_open(self.lib.ocf_core_get_front_volume(self.core.handle), self)
|
||||||
|
|
||||||
def md5(self):
|
def md5(self):
|
||||||
return self._exp_obj_md5(4096)
|
return self._exp_obj_md5(4096)
|
||||||
|
Loading…
Reference in New Issue
Block a user