From: Ramana Raja Date: Mon, 18 Sep 2017 14:46:30 +0000 (+0530) Subject: pybind/ceph_volume_client: remove 'compat_version' X-Git-Tag: v12.2.2~166^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9421b40f1748c50b7f92abe8615c0cd9208fdbdc;p=ceph.git pybind/ceph_volume_client: remove 'compat_version' ... class attribute of the 'CephFSVolumeClient' class. It was supposed to record the earliest version of CephFSVolumeClient that the current version is compatible with. It's not useful data to be stored as a class attribute. Signed-off-by: Ramana Raja (cherry picked from commit 894a734aa5a56b20d3f68bb3ad644b370f193934) --- diff --git a/src/pybind/ceph_volume_client.py b/src/pybind/ceph_volume_client.py index e4a7b184e403..422189375264 100644 --- a/src/pybind/ceph_volume_client.py +++ b/src/pybind/ceph_volume_client.py @@ -229,8 +229,6 @@ class CephFSVolumeClient(object): # Current version version = 1 - # Earliest compatible version - compat_version = 1 # Where shall we create our volumes? POOL_PREFIX = "fsvolume_"