diff --git a/NEWS.rst b/NEWS.rst index afc26499ed3911df71f58fa0fb648bd822fd2d18..2b4e8d482a77bbe69ceb521e2a7d399751979150 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -30,6 +30,7 @@ Bugs corrected: * IP plugin displays incorrect subnet mask #1417 * Glances PsUtil ValueError on IoCounter with TASK kernel options #1440 * Per CPU in Web UI have some display issues. #1494 + * Fan speed and voltages section? #1398 Others: diff --git a/glances/__init__.py b/glances/__init__.py index 40633133a1701db9a7f79475200ecc6f12894561..f92d91332b428e6e566c56f42aff498a8011d5bf 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -27,7 +27,7 @@ import signal import sys # Global name -__version__ = '3.1.1RC1' +__version__ = '3.1.1RC2' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3' diff --git a/glances/plugins/glances_sensors.py b/glances/plugins/glances_sensors.py index 36c18ad71c36d87b483f6c70e8a56824f3a0bc03..da2e9137da247fe37104a26b22754e2c0097563e 100644 --- a/glances/plugins/glances_sensors.py +++ b/glances/plugins/glances_sensors.py @@ -249,8 +249,9 @@ class GlancesGrabSensors(object): # !!! Disable Fan: High CPU consumption with psutil 5.2.0 or higher # Delete the two followings lines when corrected (https://github.com/giampaolo/psutil/issues/1199) - self.init_fan = False - logger.debug("Fan speed sensors disable (see https://github.com/giampaolo/psutil/issues/1199)") + # Correct and tested with PsUtil 5.6.1 (Ubuntu 18.04) + # self.init_fan = False + # logger.debug("Fan speed sensors disable (see https://github.com/giampaolo/psutil/issues/1199)") # Init the stats self.reset()