cleanup: remove unnacessary nil check before range (#7194)

Signed-off-by: Guangming Wang <guangming.wang@daocloud.io>
This commit is contained in:
Guangming Wang 2020-05-02 14:25:44 +08:00 committed by GitHub
parent f36ae1c21c
commit 5b4006ac86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,11 +302,9 @@ func (d *Discovery) refresh(ctx context.Context) ([]*targetgroup.Group, error) {
labels[azureLabelMachineScaleSet] = model.LabelValue(vm.ScaleSet) labels[azureLabelMachineScaleSet] = model.LabelValue(vm.ScaleSet)
} }
if vm.Tags != nil { for k, v := range vm.Tags {
for k, v := range vm.Tags { name := strutil.SanitizeLabelName(k)
name := strutil.SanitizeLabelName(k) labels[azureLabelMachineTag+model.LabelName(name)] = model.LabelValue(*v)
labels[azureLabelMachineTag+model.LabelName(name)] = model.LabelValue(*v)
}
} }
// Get the IP address information via separate call to the network provider. // Get the IP address information via separate call to the network provider.