Bug P3
Status Update
Comments
mo...@monami-ya.com <mo...@monami-ya.com> #2
I got a similar issue on v2.36.1 and it was resolved by my patch (at least on my laptop).
I'll submit it to gerrit soon.
I'll submit it to gerrit soon.
ol...@gmail.com <ol...@gmail.com> #3
I got a similar issue on v2.49.3.
My solution is to fix it after repo init by command:
sed -i 's/if depth > 0/if int(depth) > 0/g' .repo/repo/project.py
Then repo sync should be working without error.
My solution is to fix it after repo init by command:
sed -i 's/if depth > 0/if int(depth) > 0/g' .repo/repo/project.py
Then repo sync should be working without error.
Description
Output ofhttps://gerrit.googlesource.com/git-repo )https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue
repo --version
:repo version v2.32
(from
(tracking refs/heads/stable)
(Tue, 28 Feb 2023 14:21:17 +0000)
repo launcher version 2.32
(from /Users/jdelhier/bin/tools/repo)
(currently at 2.32)
repo User-Agent git-repo/2.32 (Darwin) git/2.40.0 Python/3.11.2
git 2.40.0
git User-Agent git/2.40.0 (Darwin) git-repo/2.32
Python 3.11.2 (main, Feb 16 2023, 03:07:35) [Clang 14.0.0 (clang-1400.0.29.202)]
OS Darwin 22.3.0 (Darwin Kernel Version 22.3.0: Mon Jan 30 20:42:11 PST 2023; root:xnu-8792.81.3~2/RELEASE_X86_64)
CPU x86_64 (i386)
Bug reports:
Operating system & version:
OSX 13.2.1, Ubuntu 20.04
Manifest URL (if publicly available):
What steps will reproduce the problem?
1. Initialize repo using a manifest that includes a submanifest entry and provide --depth option as part of call. ie:
repo init -m <some manifest> -b <some branch> -m default.xml -g default --depth=5
2. Run repo sync
What is the expected output?
Expect repo sync to succeed
What do you see instead?
Traceback (most recent call last):
File "/Volumes/Source/repos/development/foobar/.repo/repo/main.py", line 705, in <module>
_Main(sys.argv[1:])
File "/Volumes/Source/repos/development/foobar/.repo/repo/main.py", line 681, in _Main
result = repo._Run(name, gopts, argv) or 0
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/Source/repos/development/foobar/.repo/repo/main.py", line 228, in _Run
result = run()
^^^^^
File "/Volumes/Source/repos/development/foobar/.repo/repo/main.py", line 219, in <lambda>
run = lambda: self._RunLong(name, gopts, argv) or 0
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/Source/repos/development/foobar/.repo/repo/main.py", line 314, in _RunLong
result = cmd.Execute(copts, cargs)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/Source/repos/development/foobar/.repo/repo/subcmds/sync.py", line 1280, in Execute
self._UpdateAllManifestProjects(opt, mp, manifest_name)
File "/Volumes/Source/repos/development/foobar/.repo/repo/subcmds/sync.py", line 1125, in _UpdateAllManifestProjects
child.manifestProject.SyncWithPossibleInit(
File "/Volumes/Source/repos/development/foobar/.repo/repo/project.py", line 3556, in SyncWithPossibleInit
return self.Sync(
^^^^^^^^^^
File "/Volumes/Source/repos/development/foobar/.repo/repo/project.py", line 3726, in Sync
self._ConfigureDepth(depth)
File "/Volumes/Source/repos/development/foobar/.repo/repo/project.py", line 3956, in _ConfigureDepth
if depth > 0:
^^^^^^^^^
TypeError: '>' not supported between instances of 'str' and 'int'
Please provide any additional information below. Did this use to work?