Skip to content

Commit ba35ee3

Browse files
committed
change acl_loader to use tcp socket for db communication
Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan <arlakshm@microsoft.com>
1 parent 611d8c6 commit ba35ee3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

acl_loader/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ def __init__(self):
147147

148148
namespaces = multi_asic.get_all_namespaces()
149149
for front_asic_namespaces in namespaces['front_ns']:
150-
self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces)
150+
self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(namespace=front_asic_namespaces)
151151
self.per_npu_configdb[front_asic_namespaces].connect()
152-
self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(use_unix_socket_path=True, namespace=front_asic_namespaces)
152+
self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(namespace=front_asic_namespaces)
153153
self.per_npu_statedb[front_asic_namespaces].connect(self.per_npu_statedb[front_asic_namespaces].STATE_DB)
154154

155155
self.read_tables_info()

0 commit comments

Comments
 (0)