Skip to content

Commit

Permalink
Merge pull request #9 from cmcarthur/skip-empty-subscriber-batches
Browse files Browse the repository at this point in the history
skip empty subscriber batches
  • Loading branch information
KAllan357 authored May 9, 2018
2 parents 7a54f02 + 5d7f0f8 commit 5c80be0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tap_exacttarget/endpoints/subscribers.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ def sync_data(self):
pass

def pull_subscribers_batch(self, subscriber_keys):
if not subscriber_keys:
return

table = self.__class__.TABLE
stream = request('Subscriber', FuelSDK.ET_Subscriber, self.auth_stub, {
'Property': 'SubscriberKey',
Expand Down

0 comments on commit 5c80be0

Please sign in to comment.