move remainingNodes outof drain loop

This commit is contained in:
yuzhiquan 2021-10-12 09:26:22 +08:00
parent f54d2a0dd1
commit 0c66b43d7a

View File

@ -319,6 +319,7 @@ func (o *DrainCmdOptions) RunDrain() error {
continue continue
} }
}
if len(remainingNodes) > 0 { if len(remainingNodes) > 0 {
fmt.Fprintf(o.ErrOut, "There are pending nodes to be drained:\n") fmt.Fprintf(o.ErrOut, "There are pending nodes to be drained:\n")
@ -326,7 +327,6 @@ func (o *DrainCmdOptions) RunDrain() error {
fmt.Fprintf(o.ErrOut, " %s\n", nodeName) fmt.Fprintf(o.ErrOut, " %s\n", nodeName)
} }
} }
}
return utilerrors.NewAggregate(fatal) return utilerrors.NewAggregate(fatal)
} }