From: wangyunqing Date: Fri, 24 Dec 2021 08:55:13 +0000 (+0800) Subject: pybind/mgr: fix typos X-Git-Tag: v17.1.0~114^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=aef96f05c17a9a5a000ca92934b217bfa31bef3d;p=ceph.git pybind/mgr: fix typos Signed-off-by: wangyunqing --- diff --git a/src/pybind/mgr/diskprediction_local/module.py b/src/pybind/mgr/diskprediction_local/module.py index ce1e8836f32..450dc9c8359 100644 --- a/src/pybind/mgr/diskprediction_local/module.py +++ b/src/pybind/mgr/diskprediction_local/module.py @@ -121,7 +121,7 @@ class Module(MgrModule): return datetime.datetime.fromtimestamp( predicted_timestamp / (1000 ** 3) + life_expectancy_day).strftime('%Y-%m-%d') - def _predict_life_expentancy(self, devid: str) -> str: + def _predict_life_expectancy(self, devid: str) -> str: predicted_result = '' health_data: Dict[str, Dict[str, Any]] = {} predict_datas: List[DevSmartT] = [] @@ -206,7 +206,7 @@ class Module(MgrModule): return predicted_result def predict_life_expectancy(self, devid: str) -> Tuple[int, str, str]: - result = self._predict_life_expentancy(devid) + result = self._predict_life_expectancy(devid) if result.lower() == 'good': return 0, '>6w', '' elif result.lower() == 'warning': @@ -262,7 +262,7 @@ class Module(MgrModule): if not devInfo.get('devid'): continue self.log.debug('%s' % devInfo) - result = self._predict_life_expentancy(devInfo['devid']) + result = self._predict_life_expectancy(devInfo['devid']) if result == 'unknown': self._reset_device_life_expectancy(devInfo['devid']) continue