fix issue that pattern matching broken on node set
Signed-off-by: xu yang <xyang@ciq.com>
This commit is contained in:
@@ -52,6 +52,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
- Return non-zero exit code on node sub-commands #1421
|
||||
- Fix panic when getting a long container list before building the container. #1391
|
||||
- Return non-zero exit code on power sub-commands #1439
|
||||
- Fix issue that pattern matching broken on `node set` #964
|
||||
|
||||
## v4.5.8, 2024-10-01
|
||||
|
||||
|
||||
@@ -234,7 +234,8 @@ func NodeSetParameterCheck(set *wwapiv1.NodeSetParameter, console bool) (nodeDB
|
||||
fmt.Printf("\n*** WARNING: This command will modify all nodes! ***\n\n")
|
||||
}
|
||||
} else {
|
||||
nodes = node.FilterByName(nodes, set.NodeNames)
|
||||
expandNodes := hostlist.Expand(set.NodeNames)
|
||||
nodes = node.FilterByName(nodes, expandNodes)
|
||||
}
|
||||
|
||||
if len(nodes) == 0 {
|
||||
|
||||
Reference in New Issue
Block a user