Skip to content

Commit

Permalink
[ledd] Exit with code 0 if we fail to find a platform-specific led_co…
Browse files Browse the repository at this point in the history
…ntrol module (sonic-net#14)
  • Loading branch information
jleveque committed May 9, 2018
1 parent c940a7d commit 6d35814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic-ledd/scripts/ledd
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def main():
# Load platform-specific LedControl module
led_control = load_platform_led_control_module()
if led_control is None:
sys.exit(1)
sys.exit(0)

# Open a handle to the Application database
appl_db = swsscommon.DBConnector(swsscommon.APPL_DB,
Expand Down

0 comments on commit 6d35814

Please sign in to comment.