You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Poed maintains a system-wide exclusive lock for access to the PoE chipset communications channel. This lock is maintained poorly and the error recovery for failed lock attempts is incorrect. This can lead invalid poed state.
the try/except code that manages the exclusive lock includes the safe code path inside the lock exception handler. Meaning, the safe code path can throw an exception similar to the lock syscall and poed cannot tell the difference.
Exception handling for a failed lock attempt does not provide adequate context to the user as to the failure cause or location
Failed lock attempts are ignored (the safe code path result skipped).
The text was updated successfully, but these errors were encountered:
Poed maintains a system-wide exclusive lock for access to the PoE chipset communications channel. This lock is maintained poorly and the error recovery for failed lock attempts is incorrect. This can lead invalid poed state.
The text was updated successfully, but these errors were encountered: