Skip to content

Commit e8dbb49

Browse files
committed
increase timeout to 60 seconds
1 parent b227748 commit e8dbb49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/gitingest/repository_clone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from gitingest.utils import async_timeout
1010

11-
TIMEOUT: int = 20
11+
TIMEOUT: int = 60
1212

1313

1414
@dataclass

src/gitingest/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
T = TypeVar("T")
1010

1111

12-
def async_timeout(seconds: int = 10) -> Callable[..., Callable[..., Awaitable[T]]]:
12+
def async_timeout(seconds: int = 60) -> Callable[..., Callable[..., Awaitable[T]]]:
1313
"""
1414
Async Timeout decorator.
1515

0 commit comments

Comments
 (0)