Skip to content

Commit

Permalink
Updated comment to reflect the code and the reason behind it
Browse files Browse the repository at this point in the history
RB=2204748
G=lnos-reviewers
R=pchaudhary,pmao,samaity,zxu
A=zxu
  • Loading branch information
Vasant Patil committed Jul 28, 2020
1 parent 854d392 commit 5ccee2b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ def __init__(self, name=None, imgname=None, keeptb=False, fakeplatform=None):
self.natd = ['natsyncd', 'natmgrd']
self.alld = self.basicd + self.swssd + self.syncd + self.rtd + self.teamd + self.natd
# Dynamic port breakout command may wait for 60 second incase of breakout failure.
# So, to avoid socker red timeout, setting timeout to 120 seconds
# So, to avoid socket read timeout, setting timeout to 300 seconds
# Tries with 120 seconds, but still saw the failure, but 300 seconds consistently
# succeeded. Hence keeping it to 300 seconds while we dig deeper on why it
# take more than 60 seconds.
self.client = docker.from_env(timeout=300)
self.appldb = None

Expand Down

0 comments on commit 5ccee2b

Please sign in to comment.