Skip to content

Commit 9c6ba94

Browse files
authored
[vs]: connect to localhost instead 127.0.0.1 in check_install.py (#2296)
Signed-off-by: Guohan Lu <[email protected]>
1 parent f0540e7 commit 9c6ba94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def main():
2424
cmd_prompt = "%s@sonic:~\$ $" % args.u
2525
grub_selection = "The highlighted entry will be executed"
2626

27-
p = pexpect.spawn("telnet 127.0.0.1 %s" % args.p, timeout=600, logfile=sys.stdout)
27+
p = pexpect.spawn("telnet localhost %s" % args.p, timeout=600, logfile=sys.stdout)
2828

2929
# select ONIE embed
3030
p.expect(grub_selection)

0 commit comments

Comments
 (0)