You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
When lookup fails in generator.go's slaveRecords for slave.PID.Host, we default to using labels.DomainFrag(slave.PID.Host, labels.Sep, spec) for the rg.SlaveIPs[slave.ID] value.
Later in taskContextRecord, we use that for *taskID*.slave.mesos records. A test case for this and possibly a fix should be created so that invalid A records are not created in this situation.
My suspicion is that a failure would occur later on down the line because resolver.go will attempt a .To4() on all A records which should fail this case.
The text was updated successfully, but these errors were encountered:
When lookup fails in generator.go's
slaveRecords
forslave.PID.Host
, we default to usinglabels.DomainFrag(slave.PID.Host, labels.Sep, spec)
for therg.SlaveIPs[slave.ID]
value.Later in
taskContextRecord
, we use that for*taskID*.slave.mesos
records. A test case for this and possibly a fix should be created so that invalid A records are not created in this situation.My suspicion is that a failure would occur later on down the line because resolver.go will attempt a
.To4()
on all A records which should fail this case.The text was updated successfully, but these errors were encountered: