-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[LLDP]: Update init_db to load global database config #166
Changes from 2 commits
d3f3cdd
463fefb
e5bce8d
842ff69
102d10e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,9 +181,10 @@ def init_db(): | |
Connects to DB | ||
:return: db_conn | ||
""" | ||
SonicDBConfig.load_sonic_global_db_config() | ||
# SyncD database connector. THIS MUST BE INITIALIZED ON A PER-THREAD BASIS. | ||
# Redis PubSub objects (such as those within swsssdk) are NOT thread-safe. | ||
db_conn = SonicV2Connector(**redis_kwargs) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Why remove existing feature? #Closed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Previously redis_kwargs had unix socket path, with the changes done in SonicV2Connector class, unix socket path should be read from database config file. Fixed this to use unix_socket_path from database config file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is still arguable and irrelevant to the LLDP test fix. Could you minimize the changes in this PR, and submit another PR if you really want to change this part? In reply to: 503657219 [](ancestors = 503657219) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reverted back as suggested, only to provide fix for unit-test. |
||
db_conn = SonicV2Connector() | ||
|
||
return db_conn | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it working for single ASIC use case? #Closed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this works for single asic as well.