Add filters, throttling, and connection test

This commit is contained in:
Codex Agent
2026-01-13 11:15:57 +01:00
parent 8944710e22
commit 0f9fc76711
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);
}
}
}
}