Skip to content

Commit

Permalink
[build] Increase timeout value when installing SONiC image on kvm (so…
Browse files Browse the repository at this point in the history
  • Loading branch information
liushilongbuaa authored Jul 20, 2022
1 parent 228853b commit 6ae7486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_sonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
i = 0
while True:
try:
p = pexpect.spawn("telnet 127.0.0.1 {}".format(args.p), timeout=600, logfile=sys.stdout, encoding='utf-8')
p = pexpect.spawn("telnet 127.0.0.1 {}".format(args.p), timeout=1200, logfile=sys.stdout, encoding='utf-8')
break
except Exception as e:
print(str(e))
Expand Down

0 comments on commit 6ae7486

Please sign in to comment.