From cfc61a81964bd54c10e754f429afac1ea070f105 Mon Sep 17 00:00:00 2001 From: mlok Date: Mon, 2 Aug 2021 10:44:43 -0400 Subject: [PATCH] [config][interface][speed] Fixed the config interface speed in multiasic issue Function SonicV2Connector() call with front_asic_namespaces is not defined. It should be namespace whic is passing argument. Address issue 8308 --- scripts/portconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/portconfig b/scripts/portconfig index bbc3b7ebe2..bf730ea5c9 100755 --- a/scripts/portconfig +++ b/scripts/portconfig @@ -81,7 +81,7 @@ class portconfig(object): self.state_db = SonicV2Connector(host='127.0.0.1') else: self.db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) - self.state_db = SonicV2Connector(use_unix_socket_path=True, namespace=front_asic_namespaces) + self.state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) self.db.connect() self.state_db.connect(self.state_db.STATE_DB, False)