diff options
author | sroet <sanderroet@hotmail.com> | 2021-09-10 13:36:15 +0200 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-09-18 09:26:28 +0800 |
commit | 10f24aee9c9b49f2ea1060536eab296446a06efd (patch) | |
tree | 02052c977f64aa22bd25f679f4f9d017f725a692 /git/cmd.py | |
parent | 146202cdcbed8239651ccc62d36a8e5af3ceff8c (diff) | |
download | gitpython-10f24aee9c9b49f2ea1060536eab296446a06efd.tar.gz |
change default fetch timeout to 60 s
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |