Skip to content

Commit 0e58426

Browse files
committed
edit timeout
1 parent cf8905c commit 0e58426

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

perf_checks/webscenarios_perfcheck.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def make_request(url):
115115
}
116116

117117
# download full content with get
118-
response = requests.get(url, headers=headers, timeout=60, allow_redirects=True)
118+
response = requests.get(url, headers=headers, timeout=180, allow_redirects=True)
119119

120120
end_time = time.time()
121121
response_time = round((end_time - start_time) * 1000, 2)
@@ -134,7 +134,7 @@ def make_request(url):
134134
except requests.exceptions.Timeout:
135135
return {
136136
'status_code': 'TIMEOUT',
137-
'response_time_ms': 60000,
137+
'response_time_ms': 180000,
138138
'content_size_bytes': 0,
139139
'url': url
140140
}

0 commit comments

Comments
 (0)