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
|
return
|
||||||
}
|
}
|
||||||
for host := range ch {
|
for host := range ch {
|
||||||
if pool.IsKnown(host) {
|
if pool.IsKnown(host) || host == "" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
go func(h string) {
|
go func(h string) {
|
||||||
|
|||||||
Reference in New Issue
Block a user