Skip to content

Commit 2927ae7

Browse files
authored
chore(llmobs): bump default dne API call timeouts to 10s (#14656)
## Description bump default timeout for API calls in the DnE SDK from 5s to 10s, due to reports of people still running into timeouts occasionally on small datasets that uses the batch update endpoint ## Testing unable to reproduce cases with 5s personally, but there is no significant harm in bumping the timeout to 10s ## Risks none, backend will handle the load with autoscaling if necessary
1 parent d07b7f4 commit 2927ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ddtrace/llmobs/_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ class LLMObsExperimentsClient(BaseLLMObsWriter):
310310
EVP_SUBDOMAIN_HEADER_VALUE = EXP_SUBDOMAIN_NAME
311311
AGENTLESS_BASE_URL = AGENTLESS_EXP_BASE_URL
312312
ENDPOINT = ""
313-
TIMEOUT = 5.0
313+
TIMEOUT = 10.0
314314
BULK_UPLOAD_TIMEOUT = 60.0
315315
LIST_RECORDS_TIMEOUT = 20
316316
SUPPORTED_UPLOAD_EXTS = {"csv"}

0 commit comments

Comments
 (0)