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"
"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
}