Skip to content

Commit

Permalink
fix: /api/collections/{pk}/metadata/ in Kingfisher Process observed t…
Browse files Browse the repository at this point in the history
…o take 1h
  • Loading branch information
jpmckinney committed Oct 7, 2024
1 parent a565bf1 commit c4eadb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_registry/process_manager/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def request(self, method, url, *, error_message, **kwargs):
:raises RecoverableError:
"""
try:
response = requests.request(method, url, **kwargs, timeout=90)
response = requests.request(method, url, **kwargs, timeout=7200) # 2h, until performance issues resolved
response.raise_for_status()
except RequestException as e:
raise RecoverableError(f"{self}: {error_message} ({url})") from e
Expand Down

0 comments on commit c4eadb6

Please sign in to comment.