You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 4, 2020. It is now read-only.
The getall function creates an infinite loop from GitLab 7.10 onwards because the pagination functionality was removed. This is because the API always returns some values, so that the 'results' variable will never be empty.
A fix for users of the getall function is to just call the requested function directly, so instead of calling getall(getgroupmembers, group_id=1) you call getgroupmembers(group_id=1).