fix(cloud): Don't await for cloud scheduler delete unverified task

This commit is contained in:
Vijay Budhram 2024-05-30 10:48:48 -04:00
Родитель d6ca445284
Коммит 02ca8ba6cf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9778545895B2532B
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -161,7 +161,10 @@ export class CloudSchedulerHandler {
startDate: startDate.toISOString(),
});
this.statsd.increment('cloud-scheduler.deleteUnverifiedAccounts');
await this.processAccountDeletionInRange(
// We don't await because it could take 30+ seconds to create the cloud tasks
// to delete all the accounts.
this.processAccountDeletionInRange(
this.config,
this.accountTasks,
reason,