Skip to content

Commit

Permalink
boost timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
hanars committed Feb 14, 2024
1 parent 2476aa9 commit 799fd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seqr/utils/search/hail_search_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def _hail_backend_url(path):


def _execute_search(search_body, user, path='search', exception_map=None):
response = requests.post(_hail_backend_url(path), json=search_body, headers={'From': user.email}, timeout=300)
response = requests.post(_hail_backend_url(path), json=search_body, headers={'From': user.email}, timeout=350)

if response.status_code >= 400:
error = (exception_map or {}).get(response.status_code) or response.text or response.reason
Expand Down

0 comments on commit 799fd42

Please sign in to comment.