Skip to content

Commit fc75da8

Browse files
authored
Fix: flavor name component parser not recognizing _chy (#1085)
Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud>
1 parent 01052b1 commit fc75da8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tests/iaas/scs_0100_flavor_naming/flavor_names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ class SyntaxV2:
400400
prefix = "SCS-"
401401
cpuram = re.compile(r"([0-9]*)([LVTC])(i|)\-([0-9\.]*)(u|)(o|)")
402402
disk = re.compile(r"\-(?:([0-9]*)x|)([0-9]*)([nhsp]|)")
403-
hype = re.compile(r"_(kvm|xen|vmw|hyv|bms)")
403+
hype = re.compile(r"_(kvm|xen|vmw|hyv|bms|chy)")
404404
hwvirt = re.compile(r"_(hwv)")
405405
# cpubrand needs final lookahead assertion to exclude confusion with _ib extension
406406
cpubrand = re.compile(r"_([izar])([0-9]*)(h*)(?=$|_)")

0 commit comments

Comments
 (0)