From 657119fcb37a1293563ab4c6e11e8069e77cce28 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 5 Mar 2026 17:11:31 -0500 Subject: [PATCH] refactor(plugins): increase work channel capacity for improved playlist processing Signed-off-by: Deluan --- plugins/playlist_provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/playlist_provider.go b/plugins/playlist_provider.go index aa28990ea..c1cb326aa 100644 --- a/plugins/playlist_provider.go +++ b/plugins/playlist_provider.go @@ -21,7 +21,7 @@ const ( FuncPlaylistProviderGetPlaylist = "nd_playlist_provider_get_playlist" // workChCapacity is the buffer size for the work channel. - workChCapacity = 16 + workChCapacity = 64 // discoveryRetryDelay is how long to wait before retrying a failed GetAvailablePlaylists call. discoveryRetryDelay = 5 * time.Minute