hack: decrease ratelimit for .testrun.org subdomains

This commit is contained in:
link2xt
2023-11-01 18:47:22 +00:00
parent 89c873acd0
commit 0431ae53ca
6 changed files with 26 additions and 13 deletions

View File

@@ -258,8 +258,8 @@ impl Accounts {
}
/// Starts background tasks such as IMAP and SMTP loops for all accounts.
pub async fn start_io(&self) {
for account in self.accounts.values() {
pub async fn start_io(&mut self) {
for account in self.accounts.values_mut() {
account.start_io().await;
}
}