Hey folks,
I’m running into an issue where cloning a large repo fails with:
git clone --progress --verbose https://gitea.mydomain.com/myorg/icinga2-bullshit.git
Cloning into 'icinga2-bullshit'...
POST git-upload-pack (175 bytes)
POST git-upload-pack (602 bytes)
error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated.
fatal: expected 'packfile'
Here are some things I noticed while trying to debug this:
- the repo has about 4000 commits and 270MB size.
- the error occurs on windows and linux clients
- I managed to clone with the parameter
--depth=1
as workaround - the Gitea server log shows while trying to clone the full repo:
2025/02/26 08:46:12 ...eb/routing/logger.go:68:func1() [W] router: slow POST /myorg/icinga2-bullshit.git/git-upload-pack for 10.0.0.3:0, elapsed 3429.8ms @ repo/githttp.go:478(repo.ServiceUploadPack)
2025/02/26 08:47:02 ...eb/routing/logger.go:68:func1() [W] router: slow POST /myorg/icinga2-bullshit.git/git-upload-pack for 10.0.0.3:0, elapsed 3375.3ms @ repo/githttp.go:478(repo.ServiceUploadPack)
Gitea also spawns this process while the clone hangs:
/usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= upload-pack --stateless-rpc /data/git/repositories/myorg/icinga2-bullshit.git
The clone command stops always after 100 seconds:
time git clone --progress --verbose https://gitea.mydomain.com/myorg/icinga2-bullshit.git
Cloning into 'foobar'...
POST git-upload-pack (175 bytes)
POST git-upload-pack (602 bytes)
error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated.
fatal: expected 'packfile'
real 1m40.839s
Could this issue be related to a timeout on the Gitea server or the git client?
I’m really stuck here and would be happy for any advice / help