Skip to content

Commit 2073c37

Browse files
authored
Merge pull request #65 from WorkflowAI/update-api-call-timeout
Update api call timeout
2 parents 3344cdb + 6373614 commit 2073c37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "workflowai"
3-
version = "0.6.0.dev16"
3+
version = "0.6.0.dev17"
44
description = ""
55
authors = ["Guillaume Aquilina <guillaume@workflowai.com>"]
66
readme = "README.md"

workflowai/core/client/_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async def _client(self, run: bool = False):
3535
"Authorization": f"Bearer {self.api_key}",
3636
**source_headers,
3737
},
38-
timeout=120.0,
38+
timeout=180.0,
3939
) as client:
4040
try:
4141
yield client

0 commit comments

Comments
 (0)