Skip to content
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

hwsku_fix_daemon #51

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sonic-daemon-base/sonic_daemon_base/daemon_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def get_path_to_port_config_file(self):
(platform_path, hwsku_path) = self.get_path_to_platform_and_hwsku()

# First check for the presence of the new 'platform.json' file
port_config_file_path = "/".join([hwsku_path, PLATFORM_CAP])
port_config_file_path = "/".join([platform_path, PLATFORM_CAP])
if not os.path.isfile(port_config_file_path):

# platform.json doesn't exist. Try loading the legacy 'port_config.ini' file
Expand Down