removed unneccesary delay 2

This commit is contained in:
Vincent Cloutier 2022-12-28 11:05:03 -05:00
parent 8bc044eeba
commit d6cf46f0c6

View file

@ -55,7 +55,7 @@ namespace BirdsiteLive.Pipeline.Processors
await twitterUsersBufferBlock.SendAsync(u.ToArray(), ct);
}
await Task.Delay(1000, ct);
await Task.Delay(10, ct); // this is somehow necessary
}
catch (Exception e)
{