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
I am periodically getting the following error upon extraction: SingerSyncError GET: 400 Message: Error accessing adreport job.
After an initial look-through troubleshooting the error I think it may have to do with the while condition being met when the async job is not completely done.
This thread implies that status != "Job Completed" needs to be changed to status != "Job Completed" or percent_completion < 100 for the following line.
Again, this is an initial take, but if that change is made, you may consider updating this condition as well.
The text was updated successfully, but these errors were encountered:
I am periodically getting the following error upon extraction:
SingerSyncError GET: 400 Message: Error accessing adreport job.
After an initial look-through troubleshooting the error I think it may have to do with the
while
condition being met when the async job is not completely done.A stackoverflow thread says it better than I can.
This thread implies that
status != "Job Completed"
needs to be changed tostatus != "Job Completed" or percent_completion < 100
for the following line.Again, this is an initial take, but if that change is made, you may consider updating this condition as well.
The text was updated successfully, but these errors were encountered: