Skip to content

Commit

Permalink
Fix telemetry container in generate_telemetry_config (sonic-net#11943)
Browse files Browse the repository at this point in the history
Fix telemetry container in generate_telemetry_config
  • Loading branch information
maunnikr-cisco authored Mar 25, 2024
1 parent 8d1f5cb commit 32bf416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/helpers/gnmi_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def generate_telemetry_config(self, duthost):
self.gnmi_config_table = "TELEMETRY"
self.gnmi_container = "telemetry"
# GNMI program is telemetry or gnmi-native
res = duthost.shell("docker exec gnmi supervisorctl status", module_ignore_errors=True)
res = duthost.shell("docker exec telemetry supervisorctl status", module_ignore_errors=True)
if 'telemetry' in res['stdout']:
self.gnmi_program = "telemetry"
else:
Expand Down

0 comments on commit 32bf416

Please sign in to comment.