You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that there might be a possibility of an infinite loop when syncing records. This was discovered when investigating
a large number of records syncing on the events endpoint:
Though I'm not an engineer myself, if the max_modified (eventAt) date time remains the same within the set of 10,000 records over a requested page of events; then the offset would be reset on the same page.
The extraction would then repeat up to an offset of 10000; and since the max_modified date-time hadn't changed, the offset would drop to 0 again.
This would continue, infinitely.
The text was updated successfully, but these errors were encountered:
It seems that there might be a possibility of an infinite loop when syncing records. This was discovered when investigating
a large number of records syncing on the
events
endpoint:tap-outreach/tap_outreach/sync.py
Lines 270 to 272 in 60091fa
Though I'm not an engineer myself, if the max_modified (eventAt) date time remains the same within the set of 10,000 records over a requested page of events; then the offset would be reset on the same page.
The extraction would then repeat up to an offset of 10000; and since the max_modified date-time hadn't changed, the offset would drop to 0 again.
This would continue, infinitely.
The text was updated successfully, but these errors were encountered: