mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
Merge pull request #7273 from jamesmarshall24/devel
Remove query_parameters from page loop causing 414
This commit is contained in:
commit
c36821d6e1
@ -245,7 +245,7 @@ class Page(object):
|
||||
if all_pages and getattr(page, 'next', None):
|
||||
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