Skip to content

Commit 6ae7486

Browse files
[build] Increase timeout value when installing SONiC image on kvm (sonic-net#11191)
1 parent 228853b commit 6ae7486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install_sonic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323
i = 0
2424
while True:
2525
try:
26-
p = pexpect.spawn("telnet 127.0.0.1 {}".format(args.p), timeout=600, logfile=sys.stdout, encoding='utf-8')
26+
p = pexpect.spawn("telnet 127.0.0.1 {}".format(args.p), timeout=1200, logfile=sys.stdout, encoding='utf-8')
2727
break
2828
except Exception as e:
2929
print(str(e))

0 commit comments

Comments
 (0)