From 870bf314fe9a2a13d746475b8f0f13db8bae5612 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 6 Sep 2018 10:36:57 +0200 Subject: [PATCH] glusterfs: remove a redundant comment This comment exactly states what the line below it does. There's no point in keeping it. Signed-off-by: Michael Adam --- pkg/volume/glusterfs/glusterfs.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/volume/glusterfs/glusterfs.go b/pkg/volume/glusterfs/glusterfs.go index c096ee888f..3223f58c2f 100644 --- a/pkg/volume/glusterfs/glusterfs.go +++ b/pkg/volume/glusterfs/glusterfs.go @@ -822,7 +822,6 @@ func (p *glusterfsVolumeProvisioner) CreateVolume(gid int) (r *v1.GlusterfsVolum return nil, 0, "", fmt.Errorf("failed to get cluster nodes for volume %s: %v", volume, err) } - // The 'endpointname' is created in form of 'glusterfs-dynamic-'. epServiceName := dynamicEpSvcPrefix + string(p.options.PVC.UID) epNamespace := p.options.PVC.Namespace endpoint, service, err := p.createEndpointService(epNamespace, epServiceName, dynamicHostIps, p.options.PVC.Name)