Add filters, throttling, and connection test
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-13 11:15:57 +01:00
parent 0c33c1ddc1
commit 53094b8d36
4 changed files with 226 additions and 0 deletions

View File

@@ -108,6 +108,10 @@ public sealed class UploadService
finally
{
_pending.TryRemove(path, out _);
if (settings.UploadDelayMs > 0)
{
await Task.Delay(settings.UploadDelayMs, token);
}
}
}
}