ui. save draft timeout angepasst

This commit is contained in:
Lars 2025-12-12 21:26:53 +01:00
parent 16af07dd21
commit 65bcea71ee

View File

@ -241,7 +241,7 @@ def save_draft_to_vault(markdown_content: str, filename: str = None):
response = requests.post(
INGEST_SAVE_ENDPOINT,
json={"markdown_content": markdown_content, "filename": filename},
timeout=60
timeout=API_TIMEOUT
)
response.raise_for_status()
return response.json()