- Notifications
You must be signed in to change notification settings - Fork673
fix: avoid passing redundant arguments to API#1965
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
codecov-commenter commentedApr 4, 2022
Codecov Report
@@ Coverage Diff @@## main #1965 +/- ##======================================= Coverage 92.56% 92.56% ======================================= Files 78 78 Lines 4909 4910 +1 =======================================+ Hits 4544 4545 +1 Misses 365 365
Flags with carried forward coverage won't be shown.Click here to find out more.
|
@nejch Mhmm but where is that |
@max-wittig previously it would just get picked from the method's python-gitlab/gitlab/client.py Lines 680 to 682 in3b0806e
but all kwargs are passed as query parameters to the API because they're copied to params earlier: python-gitlab/gitlab/client.py Line 669 in3431887
I added it as an explicit argument to avoid that. I could have done |
Closes#987.
This was already fixed inb9ecc9a but partially reintroduced with the global
retry_transient_errors
feature.