exclude empty hosts
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m39s
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m39s
This commit is contained in:
@@ -173,7 +173,7 @@ func NewSyncedPool(local *GrainLocalPool, hostname string, discovery Discovery)
|
||||
return
|
||||
}
|
||||
for host := range ch {
|
||||
if pool.IsKnown(host) {
|
||||
if pool.IsKnown(host) || host == "" {
|
||||
continue
|
||||
}
|
||||
go func(h string) {
|
||||
|
||||
Reference in New Issue
Block a user