removed shuffling of hosts to keep hostid for better bundling

This commit is contained in:
Joe Lothan 2026-05-26 01:42:07 -04:00
parent 1343df1a41
commit 5d80e38249

View file

@ -5,7 +5,6 @@ import (
"flag" "flag"
"fmt" "fmt"
"log" "log"
"math/rand"
"os" "os"
"sync" "sync"
"sync/atomic" "sync/atomic"
@ -138,9 +137,6 @@ func main() {
break break
} }
rand.Shuffle(len(icons), func(i, j int) {
icons[i], icons[j] = icons[j], icons[i]
})
for _, icon := range icons { for _, icon := range icons {
iconCh <- icon iconCh <- icon
} }