diff --git a/src/Services/Podcasts/Podcast.Infrastructure/Http/ShowClient.cs b/src/Services/Podcasts/Podcast.Infrastructure/Http/ShowClient.cs index 4f01bb2..70bce80 100644 --- a/src/Services/Podcasts/Podcast.Infrastructure/Http/ShowClient.cs +++ b/src/Services/Podcasts/Podcast.Infrastructure/Http/ShowClient.cs @@ -12,7 +12,7 @@ namespace Podcast.Infrastructure.Http { // Who would do such a thing?! // TODO fix this horrible perf leak! - await Task.Delay(TimeSpan.FromSeconds(Random.Shared.NextInt64())); + await Task.Delay(TimeSpan.FromSeconds(Random.Shared.NextInt64(1, 11))); return await base.SendAsync(request, cancellationToken); } }