Skip to content

Commit 3a0f79d

Browse files
committed
xcvrd: fix test issue and address more comments
1 parent b00b63b commit 3a0f79d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sonic-xcvrd/xcvrd/dom/dom_mgr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def run(self):
120120
self.task_worker()
121121
except Exception as e:
122122
self.log_error("Exception occurred at {} thread due to {}".format(threading.current_thread().getName(), repr(e)))
123-
xcvrd.log_exception_traceback()
123+
common.log_exception_traceback()
124124
self.exc = e
125125
self.main_thread_stop_event.set()
126126

sonic-xcvrd/xcvrd/xcvrd_utilities/xcvr_table_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
class XcvrTableHelper:
5656
def __init__(self, namespaces):
5757
self.int_tbl, self.dom_tbl, self.dom_threshold_tbl, self.status_tbl, self.app_port_tbl, \
58-
self.cfg_port_tbl, self.state_port_tbl, self.pm_tbl, self.firmware_info_tbl = {}, {}, {}, {}, {}, {}, {}, {}, {}
58+
self.cfg_port_tbl, self.state_port_tbl, self.pm_tbl, self.firmware_info_tbl = {}, {}, {}, {}, {}, {}, {}, {}, {}
5959
self.state_db = {}
6060
self.appl_db = {}
6161
self.cfg_db = {}

0 commit comments

Comments
 (0)