Hey,
I'm trying to clone the kernel repo from https://git.centos.org/rpms/kernel and so far without any luck - it always dies prematurely:
$ git clone https://git.centos.org/rpms/kernel Cloning into 'kernel'... remote: Enumerating objects: 7572, done. remote: Counting objects: 100% (7572/7572), done. remote: Compressing objects: 100% (6540/6540), done. fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output
I tried this also from the machine behind fedorapeople.org and got the same error, so it doesn't seem to be caused by my network:
$ hostname people02.fedoraproject.org $ git clone https://git.centos.org/rpms/kernel Cloning into 'kernel'... remote: Enumerating objects: 7572, done. remote: Counting objects: 100% (7572/7572), done. remote: Compressing objects: 100% (6540/6540), done. fatal: The remote end hung up unexpectedlyMiB | 4.23 MiB/s fatal: early EOF fatal: index-pack failed
Can have a look but you know that it's not updated anymore ? Have you tried to just clone one specific branch too ? I just quickly (I'll investigate the other thing later) gave it a try and it works :
git clone --branch c7 https://git.centos.org/rpms/kernel.git Cloning into 'kernel'... remote: Enumerating objects: 7572, done. remote: Counting objects: 100% (7572/7572), done. remote: Compressing objects: 100% (6540/6540), done. remote: Total 7572 (delta 3350), reused 2406 (delta 196), pack-reused 0 Receiving objects: 100% (7572/7572), 517.18 MiB | 17.10 MiB/s, done. Resolving deltas: 100% (3350/3350), done.
Metadata Update from @arrfab: - Issue tagged with: high-trouble, investigation, medium-gain
update : tested the whole repo/project and it worked too :
time git clone https://git.centos.org/rpms/kernel.git Cloning into 'kernel'... remote: Enumerating objects: 7572, done. remote: Counting objects: 100% (7572/7572), done. remote: Compressing objects: 100% (6540/6540), done. remote: Total 7572 (delta 3336), reused 2423 (delta 196), pack-reused 0 Receiving objects: 100% (7572/7572), 541.82 MiB | 19.69 MiB/s, done. Resolving deltas: 100% (3336/3336), done. real 0m56.661s user 0m32.701s sys 0m2.614s
Metadata Update from @arrfab: - Issue assigned to arrfab
Can have a look but you know that it's not updated anymore ?
Yeah, I need a SIG branch from it.
However, looks like it was some transient thing, since now everything works fine (and it even downloads the repo at a constant speed), so closing.
Metadata Update from @mrc0mmand: - Issue close_status updated to: Fixed - Issue status updated to: Closed (was: Open)
Log in to comment on this ticket.