summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-10 13:36:15 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commit10f24aee9c9b49f2ea1060536eab296446a06efd (patch)
tree02052c977f64aa22bd25f679f4f9d017f725a692 /git/cmd.py
parent146202cdcbed8239651ccc62d36a8e5af3ceff8c (diff)
downloadgitpython-10f24aee9c9b49f2ea1060536eab296446a06efd.tar.gz
change default fetch timeout to 60 s
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 642ef9ed..13c5e7a5 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -79,7 +79,7 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen,
finalizer: Union[None,
Callable[[Union[subprocess.Popen, 'Git.AutoInterrupt']], None]] = None,
decode_streams: bool = True,
- timeout: float = 10.0) -> None:
+ timeout: float = 60.0) -> None:
"""Registers for notifications to learn that process output is ready to read, and dispatches lines to
the respective line handlers.
This function returns once the finalizer returns