diff --git a/device/celestica/x86_64-cel_seastone-r0/sonic_platform/fan_drawer.py b/device/celestica/x86_64-cel_seastone-r0/sonic_platform/fan_drawer.py index e35ecf65195a..0fa37fba86ce 100644 --- a/device/celestica/x86_64-cel_seastone-r0/sonic_platform/fan_drawer.py +++ b/device/celestica/x86_64-cel_seastone-r0/sonic_platform/fan_drawer.py @@ -106,3 +106,13 @@ def is_replaceable(self): bool: True if it is replaceable. """ return True + + def get_maximum_consumed_power(self): + """ + Retrives the maximum power drawn by Fan Drawer + + Returns: + A float, with value of the maximum consumable power of the + component. + """ + return 33.60 diff --git a/device/celestica/x86_64-cel_seastone-r0/sonic_platform/watchdog.py b/device/celestica/x86_64-cel_seastone-r0/sonic_platform/watchdog.py index 122b5d90ddb6..2bb8f2d57aa3 100644 --- a/device/celestica/x86_64-cel_seastone-r0/sonic_platform/watchdog.py +++ b/device/celestica/x86_64-cel_seastone-r0/sonic_platform/watchdog.py @@ -135,7 +135,7 @@ def arm(self, seconds): ret = WDT_COMMON_ERROR if seconds < 0: return ret - if seconds > 16779: + if seconds > 16777: return ret