Limit page size to 100, for fetching Person records from NB API
apparently that is the effective limit..so must honor it
This commit is contained in:
parent
a7071d140b
commit
6cd71ea4c2
2 changed files with 6 additions and 1 deletions
|
@ -103,7 +103,8 @@ class NationBuilderCachePersonImporter(FromNationBuilder, nationbuilder_importin
|
|||
] + primary_address_fields
|
||||
|
||||
def get_host_objects(self):
|
||||
return self.nationbuilder.get_people(page_size=500)
|
||||
return self.nationbuilder.get_people(page_size=100,
|
||||
progress=self.progress)
|
||||
|
||||
def normalize_host_object(self, person):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue