[Git][root/services/dns][main] fix: order of home zone matters

Fernando K pushed to branch main at Root / Serviços / DNS Commits: 45f89537 by Fernando Monteiro Kiotheka at 2025-07-31T20:13:21-03:00 fix: order of home zone matters - - - - - 1 changed file: - render.go Changes: ===================================== render.go ===================================== @@ -147,7 +147,7 @@ func batchString(s string, batchSize int) []string { func renderZonesDb(repositoryRootPath string, records_by_zone map[Zone][]Record) { var home_zone_records []Record for zone, records := range records_by_zone { - if zone.Name == "home" { + if zone.Name == "home" && zone.View.Name == "interna" { for _, record := range records { if record.Type != "SOA" { home_zone_records = append(home_zone_records, record) View it on GitLab: https://gitlab.c3sl.ufpr.br/root/services/dns/-/commit/45f895376e7f745cb4784... -- View it on GitLab: https://gitlab.c3sl.ufpr.br/root/services/dns/-/commit/45f895376e7f745cb4784... You're receiving this email because of your account on gitlab.c3sl.ufpr.br.
participantes (1)
-
Fernando K (@fmkiotheka)