Reverse: portal-worker should not be closed before making sure there is at least one other active worker (#4869)

This commit is contained in:
patterniha 2025-07-23 12:09:17 +02:00 committed by GitHub
parent 308f8a7459
commit b065595f58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 9 deletions

View file

@ -9,6 +9,7 @@ import (
func (c *Control) FillInRandom() {
randomLength := dice.Roll(64)
randomLength++
c.Random = make([]byte, randomLength)
io.ReadFull(rand.Reader, c.Random)
}