Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

project list --all command option does not return all the projects anymore #843

Open
soullivaneuh opened this issue Aug 25, 2022 · 1 comment

Comments

@soullivaneuh
Copy link
Contributor

Since version 0.25.0, the --all option of the project list command it not working as expected.

# Expected result, working with 0.24.0
❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.24.0 project list --member --all | wc -l 
280
# Current result
❯ LAB_CORE_HOST="https://gitlab.com" LAB_CORE_TOKEN=${GITLAB_TOKEN} ./lab-0.25.0 project list --member --all | wc -l
100
@henrikstroem
Copy link

--number and -n has the same problem:

Expected result, working wit lab version 0.25.1

lab project list -ma --number "20" | wc -l
20

Current result

lab project list -ma --number "20" | wc -l
100

Expected result, working wit lab version 0.25.1

lab project list -ma --number "200" | wc -l
200

Current result

lab project list -ma --number "200" | wc -l
100

Expected result, working wit lab version 0.25.1

lab project list -m -a -n 20 | wc -l
20

Current result

lab project list -m -a -n 20 | wc -l
100

Expected result, working wit lab version 0.25.1

lab project list -m -a -n 200 | wc -l
200

Current result

lab project list -m -a -n 200 | wc -l
100

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants