Skip to content
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
3 changes: 3 additions & 0 deletions files/image_config/monit/container_checker
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ def get_expected_running_containers():

container_list = []
for container_name in feature_table.keys():
# skip frr_bmp since it's not container just bmp option used by bgpd
if container_name == "frr_bmp":
continue
# slim image does not have telemetry container and corresponding docker image
if container_name == "telemetry":
ret = check_docker_image("docker-sonic-telemetry")
Expand Down
Loading