Remove comments

This commit is contained in:
Christoph Kluge
2023-03-30 15:23:31 +02:00
parent 0c1b66aad9
commit 68a839bf1c
4 changed files with 2 additions and 45 deletions

View File

@@ -287,12 +287,8 @@ func (r *subClusterResolver) NumberOfNodes(ctx context.Context, obj *schema.SubC
if err != nil {
return 0, err
}
// log.Debugf(">>>> See raw list definition here: %v", nodeList)
stringList := nodeList.PrintList()
// log.Debugf(">>>> See parsed list here: %v", stringList)
numOfNodes := len(stringList)
// log.Debugf(">>>> See numOfNodes here: %v", len(stringList))
return numOfNodes, nil
return len(stringList), nil
}
// Cluster returns generated.ClusterResolver implementation.