cmd/relaypoolsrv: Allow validation of relay join requests by certificate (fixes #7196) (#7217)

This commit is contained in:
Roberto Santalla
2020-12-21 11:55:16 +01:00
committed by GitHub
parent c845e245a1
commit b5de49917c
3 changed files with 41 additions and 4 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ func main() {
for _, pool := range pools {
pool = strings.TrimSpace(pool)
if len(pool) > 0 {
go poolHandler(pool, uri, mapping)
go poolHandler(pool, uri, mapping, cert)
}
}