From 69b6f522dc72af230de5c1bcdfb813bf6ebb2d90 Mon Sep 17 00:00:00 2001 From: Joe LeVeque Date: Thu, 1 Feb 2018 00:49:26 +0000 Subject: [PATCH] [acl-loader] Prevent from hanging if run by non-root user --- acl_loader/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acl_loader/main.py b/acl_loader/main.py index b139b3641b..a3b05e8d4a 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -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()