We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c2146 commit b959da9Copy full SHA for b959da9
sonic-chassisd/scripts/chassisd
@@ -1467,7 +1467,7 @@ class ChassisdDaemon(daemon_base.DaemonBase):
1467
continue
1468
module_obj = self.platform_chassis.get_module(idx)
1469
entry = module_obj.get_module_state_transition(v2, name) or {}
1470
- if entry.get("state_transition_in_progress") == "True":
+ if entry.get("state_transition_in_progress", "False") == "True":
1471
module_obj.clear_module_state_transition(v2, name)
1472
except Exception as e:
1473
self.log_error(f"Failed to clear stale transition flags centrally: {e}")
0 commit comments