[Mellanox] Change fan tolerance to 50% (#5018)

Mellanox platforms fan tolerance should change to 50%

Signed-off-by: Shlomi Bitton <shlomibi@mellanox.com>
This commit is contained in:
shlomibitton 2020-07-23 21:18:26 +03:00 committed by GitHub
parent 639ad1895d
commit bbb91715a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,8 +288,8 @@ class Fan(FanBase):
An integer, the percentage of variance from target speed which is
considered tolerable
"""
# The tolerance value is fixed as 20% for all the Mellanox platform
return 20
# The tolerance value is fixed as 50% for all the Mellanox platform
return 50
@classmethod
def set_cooling_level(cls, level, cur_state):