mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
Remove query_parameters from within loop duplicating parameters in URL request
This commit is contained in:
parent
e603cfd7ab
commit
2394c0cb3d
@ -276,7 +276,7 @@ class Page(object):
|
||||
if all_pages and page.next:
|
||||
paged_results = [r.json()['results']]
|
||||
while page.next:
|
||||
r = self.connection.get(self.next, query_parameters)
|
||||
r = self.connection.get(self.next)
|
||||
page = self.page_identity(r)
|
||||
paged_results.append(r.json()['results'])
|
||||
json = r.json()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user