From 5d80e38249c1eb123be0ee37d3c3389c59c475ed Mon Sep 17 00:00:00 2001 From: Joe Lothan Date: Tue, 26 May 2026 01:42:07 -0400 Subject: [PATCH] removed shuffling of hosts to keep hostid for better bundling --- pipeline/03_icon_download/main.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pipeline/03_icon_download/main.go b/pipeline/03_icon_download/main.go index 063418a..9df2b99 100644 --- a/pipeline/03_icon_download/main.go +++ b/pipeline/03_icon_download/main.go @@ -5,7 +5,6 @@ import ( "flag" "fmt" "log" - "math/rand" "os" "sync" "sync/atomic" @@ -138,9 +137,6 @@ func main() { break } - rand.Shuffle(len(icons), func(i, j int) { - icons[i], icons[j] = icons[j], icons[i] - }) for _, icon := range icons { iconCh <- icon }