diff options
author | James Ravenscroft <ravenscroftj@gmail.com> | 2018-10-20 17:49:04 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-10-20 19:49:04 +0300 |
commit | 22274464f491984f5ea6cba98c40c4fad30a157c (patch) | |
tree | 1996e3113df543b8f4483a9825228b4a7775bbf7 /docs | |
parent | dea3d849e1e21ccda6f272591cadcb6d1d338b56 (diff) | |
download | gitea-22274464f491984f5ea6cba98c40c4fad30a157c.tar.gz gitea-22274464f491984f5ea6cba98c40c4fad30a157c.zip |
Add LFS timeout issue to troubleshooting doc (#5129)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/help/troubleshooting.en-us.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/content/doc/help/troubleshooting.en-us.md b/docs/content/doc/help/troubleshooting.en-us.md index 264a20ef52..6eb440c612 100644 --- a/docs/content/doc/help/troubleshooting.en-us.md +++ b/docs/content/doc/help/troubleshooting.en-us.md @@ -80,3 +80,17 @@ To migrate an repository *with* all tags you need to do two things ``` gitea admin repo-sync-releases ``` + +## LFS Issues + +For issues concerning LFS data upload + +``` +batch response: Authentication required: Authorization error: <GITEA_LFS_URL>/info/lfs/objects/batch +Check that you have proper access to the repository +error: failed to push some refs to '<GIT_REPO_URL>' +``` +Have you checked the value of `LFS_HTTP_AUTH_EXPIRY` in your `app.ini` file? By default your LFS token will expire after 20 minutes. If you have a slow connection or a large file (or both) it may not finish uploading within the time limit. + +You may want to set this value to `60m` or `120m`. + |