Skip to content

Commit

Permalink
[acl-loader] Prevent from hanging if run by non-root user (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleveque committed Feb 5, 2018
1 parent fe6d043 commit db80717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acl_loader/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self):
self.sessions_db_info = {}
self.configdb = ConfigDBConnector()
self.configdb.connect()
self.appdb = SonicV2Connector()
self.appdb = SonicV2Connector(host="127.0.0.1")
self.appdb.connect(self.appdb.APPL_DB)

self.read_tables_info()
Expand Down

0 comments on commit db80717

Please sign in to comment.