Skip to content

Commit

Permalink
Fix typo (sonic-net#10831)
Browse files Browse the repository at this point in the history
  • Loading branch information
ganglyu authored Nov 22, 2023
1 parent 7fca7f6 commit 6518297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common/helpers/gnmi_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def generate_gnmi_config(self, duthost):
return False

def generate_telemetry_config(self, duthost):
cmd = "docker images | grep -w sonic-telemety"
cmd = "docker images | grep -w sonic-telemetry"
if duthost.shell(cmd, module_ignore_errors=True)['rc'] == 0:
cmd = "docker ps | grep -w telemety"
cmd = "docker ps | grep -w telemetry"
if duthost.shell(cmd, module_ignore_errors=True)['rc'] == 0:
self.gnmi_config_table = "TELEMETRY"
self.gnmi_container = "telemetry"
Expand Down

0 comments on commit 6518297

Please sign in to comment.