mirror of https://gitee.com/openkylin/libvirt.git
schemas: Allow '.' in CPU feature name
We already support CPU features with '.' in their name (e.g., sse4.1) so we should not forbid that in the schema.
This commit is contained in:
parent
06b9c5b923
commit
88ed9ec001
|
@ -2921,7 +2921,7 @@
|
|||
</define>
|
||||
<define name="featureName">
|
||||
<data type="string">
|
||||
<param name='pattern'>[a-zA-Z0-9\-_]+</param>
|
||||
<param name='pattern'>[a-zA-Z0-9\-_\.]+</param>
|
||||
</data>
|
||||
</define>
|
||||
<define name="timeDelta">
|
||||
|
|
Loading…
Reference in New Issue