CNAME responses can occur with "Type: A" dns_sd_config requests (#8216)

Signed-off-by: Matt Berther <mattberther@users.noreply.github.com>
This commit is contained in:
Matt Berther 2020-12-01 02:32:15 -07:00 committed by GitHub
parent a6e18916ab
commit acee998df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,8 +211,10 @@ func (d *Discovery) refreshOne(ctx context.Context, name string, ch chan<- *targ
target = hostPort(addr.A.String(), d.port)
case *dns.AAAA:
target = hostPort(addr.AAAA.String(), d.port)
case *dns.CNAME:
// CNAME responses can occur with "Type: A" dns_sd_config requests.
default:
level.Warn(d.logger).Log("msg", "Invalid SRV record", "record", record)
level.Warn(d.logger).Log("msg", "Invalid record", "record", record)
continue
}
tg.Targets = append(tg.Targets, model.LabelSet{