Skip to content

Commit

Permalink
Merge branch 'main' into WEB-4143
Browse files Browse the repository at this point in the history
  • Loading branch information
boulch authored Sep 13, 2024
2 parents b58d413 + 69e1d41 commit f3e9c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Changelog
- WEB-4143 : Fix a CSRF bug in section files
[boulch]

- WEB-4144 : Set requests timeout to 12 when we populate RemoteContacts vocabulary
[remdub]


1.2.69 (2024-09-10)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion src/imio/smartweb/core/vocabularies.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __call__(self, context=None):
"metadata_fields=breadcrumb",
]
url = "{}/@search?{}".format(DIRECTORY_URL, "&".join(params))
json_contacts = get_json(url, None, 8)
json_contacts = get_json(url, None, 12)
if json_contacts is None or len(json_contacts.get("items", [])) == 0:
return SimpleVocabulary([])
return SimpleVocabulary(
Expand Down

0 comments on commit f3e9c3a

Please sign in to comment.