We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As I observed already for quite some time, the login takes some time.
Now profiling this it reveals several curl calls to gitlab API.
Takes quite some time:
The bad boy:
After a little tweaking:
Still not optimal, but(t) way better:
The text was updated successfully, but these errors were encountered:
[TASK] speedup access_level determination
c0a5ba5
Just use https://docs.gitlab.com/ee/api/members.html#list-all-members-of-a-group-or-project-including-inherited-and-invited-members It resolves all the inherited group and invited member/group for us. No need for recursive API calls and shared groups traversal. fixes marketing-factory#49
9ade40c
Just use https://docs.gitlab.com/ee/api/members.html#get-a-member-of-a-group-or-project-including-inherited-and-invited-members It resolves all the inherited group and invited member/group for us. No need for recursive API calls and shared groups traversal. fixes marketing-factory#49
Successfully merging a pull request may close this issue.
As I observed already for quite some time, the login takes some time.
Now profiling this it reveals several curl calls to gitlab API.
Takes quite some time:
The bad boy:
After a little tweaking:
Still not optimal, but(t) way better:
The text was updated successfully, but these errors were encountered: