Varun Rao

Results 2 issues of Varun Rao

Here is my code: for account, queued_jobs in self.accounts_to_queued_jobs.items(): for queued_job in queued_jobs: async_stats_job_result = self.entity_type.async_stats_job_result(account, queued_job.id) status = next(async_stats_job_result).status while status == 'PROCESSING': async_stats_job_result = self.entity_type.async_stats_job_result(account, queued_job.id) status =...

I get the following error when queueing an async stats job. I am calling the following API call a few thousand times. Each call I make contains a chunk of...