diff options
author | zeripath <art27@cantab.net> | 2020-03-03 01:13:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 22:13:01 -0300 |
commit | 07f6ae30e49b3dd64280d0eeb142de89806365ea (patch) | |
tree | ea4a6d7c99c2822316eaae7015fb162ac68a3682 /modules/git | |
parent | 5abe1c52de533b52725b1e584db9fea6fb1b39ab (diff) | |
download | gitea-07f6ae30e49b3dd64280d0eeb142de89806365ea.tar.gz gitea-07f6ae30e49b3dd64280d0eeb142de89806365ea.zip |
Change default value of DefaultCommandExecutionTimeout to match cheatsheet (#10581)
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/command.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/command.go b/modules/git/command.go index 3cb676c8da..c1f3860731 100644 --- a/modules/git/command.go +++ b/modules/git/command.go @@ -22,7 +22,7 @@ var ( GlobalCommandArgs []string // DefaultCommandExecutionTimeout default command execution timeout duration - DefaultCommandExecutionTimeout = 60 * time.Second + DefaultCommandExecutionTimeout = 360 * time.Second ) // DefaultLocale is the default LC_ALL to run git commands in. |