Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
},
{
"key": "thermal_log_current_threshold",
"intval": 2
"intval": 5
},
{
"key": "thermal_log_margin_threshold",
"intval": 2
"intval": 5
},
{
"key": "thermal_log_min_threshold",
Expand Down
4 changes: 2 additions & 2 deletions device/nokia/x86_64-nokia_ixr7250e_sup-r0/platform_ndk.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
},
{
"key": "thermal_log_current_threshold",
"intval": 3
"intval": 5
},
{
"key": "thermal_log_margin_threshold",
"intval": 3
"intval": 5
},
{
"key": "thermal_log_min_threshold",
Expand Down
6 changes: 4 additions & 2 deletions src/system-health/health_checker/service_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import re

from swsscommon import swsscommon
from sonic_py_common import multi_asic
from sonic_py_common import multi_asic, device_info
from sonic_py_common.logger import Logger
from .health_checker import HealthChecker
from . import utils
Expand Down Expand Up @@ -99,7 +99,9 @@ def get_expected_running_containers(self, feature_table):
else:
expected_running_containers.add(feature_name)
container_feature_dict[feature_name] = feature_name


if device_info.is_supervisor():
expected_running_containers.add("database-chassis")
return expected_running_containers, container_feature_dict

def get_current_running_containers(self):
Expand Down