Removed underscore for second return.
This commit is contained in:
parent
410a6ef1fa
commit
1e2fae9f80
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ func init() {
|
|||
func listAllSchedulingPolicies() {
|
||||
fmt.Println("Scheduling Policies")
|
||||
fmt.Println("-------------------")
|
||||
for policyName, _ := range schedulers.SchedPolicies {
|
||||
for policyName := range schedulers.SchedPolicies {
|
||||
fmt.Println(policyName)
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue