Skip to content

Commit

Permalink
try to fix ping
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Nov 26, 2023
1 parent 10074be commit 7c137a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cloudmesh/common/Host.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ def _ping(args):
count_flag = '-n' if platform == 'windows' else '-c'
command = ['ping', count_flag, count, ip]
result = subprocess.run(command, capture_output=True)

print(result)
print('THAT WAS RESULT!!!')
try:
timers = result.stdout \
.decode("utf-8", "ignore") \
Expand Down

0 comments on commit 7c137a5

Please sign in to comment.