disabling extra awaiter on user retrieval

This commit is contained in:
Nicolas Constant 2021-09-10 01:21:40 -04:00
parent 363481a997
commit 5121f6c7c2
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
3 changed files with 6 additions and 6 deletions

View File

@ -57,10 +57,10 @@ namespace BirdsiteLive.Pipeline.Processors
var splitCount = splitUsers.Count();
if (splitCount < 15) await Task.Delay((15 - splitCount) * WaitFactor, ct); //Always wait 15min
// Extra wait time to fit 100.000/day limit
var extraWaitTime = (int)Math.Ceiling((60 / ((100000d / 24) / userCount)) - 15);
if (extraWaitTime < 0) extraWaitTime = 0;
await Task.Delay(extraWaitTime * 1000, ct);
//// Extra wait time to fit 100.000/day limit
//var extraWaitTime = (int)Math.Ceiling((60 / ((100000d / 24) / userCount)) - 15);
//if (extraWaitTime < 0) extraWaitTime = 0;
//await Task.Delay(extraWaitTime * 1000, ct);
}
catch (Exception e)
{

View File

@ -4,7 +4,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>d21486de-a812-47eb-a419-05682bb68856</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Version>0.18.1</Version>
<Version>0.18.2</Version>
</PropertyGroup>
<ItemGroup>

View File

@ -20,7 +20,7 @@
"AdminEmail": "me@domain.name",
"ResolveMentionsInProfiles": true,
"PublishReplies": false,
"MaxUsersCapacity": 1500,
"MaxUsersCapacity": 1000,
"UnlistedTwitterAccounts": null,
"SensitiveTwitterAccounts": null
},