diff --git a/cinder/volume/drivers/ibm/ibm_storage/proxy.py b/cinder/volume/drivers/ibm/ibm_storage/proxy.py index 4e0e7cf442c..a932e1b3ebc 100644 --- a/cinder/volume/drivers/ibm/ibm_storage/proxy.py +++ b/cinder/volume/drivers/ibm/ibm_storage/proxy.py @@ -16,7 +16,6 @@ import functools import gettext import inspect -import platform from oslo_log import log as logging from oslo_utils import timeutils @@ -240,12 +239,6 @@ class IBMStorageProxy(object): 'wwpns': wwpns, 'chap': chap} - @_trace_time - def _get_os_type(self): - """Gets a string representation of the current os""" - dist = platform.dist() - return "%s-%s-%s" % (dist[0], dist[1], platform.processor()) - def _log(self, level, message, **kwargs): """Wrapper around the logger""" to_log = _(self.prefix + message) # NOQA