diff options
| author | Carlos Marin <carlos.marin@rackspace.com> | 2011-08-25 20:27:09 -0500 |
|---|---|---|
| committer | Carlos Marin <carlos.marin@rackspace.com> | 2011-08-25 20:27:09 -0500 |
| commit | f42896d23cf85d3f2c06f34b9dc88a70d0d78f4d (patch) | |
| tree | 8b134475884da7ba4892e60456aa2a1d13cd6391 | |
| parent | 72450b4a93580d2d0d9fcc64f737ed45dab2c18f (diff) | |
Fix for duplicate <any> tag on credentials.xsd.
Change-Id: I2ca766d7f95aab123a69065adadaea9773e3f143
| -rw-r--r-- | keystone/content/admin/xsd/credentials.xsd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/keystone/content/admin/xsd/credentials.xsd b/keystone/content/admin/xsd/credentials.xsd index 7c68f7f1..6c6ba310 100644 --- a/keystone/content/admin/xsd/credentials.xsd +++ b/keystone/content/admin/xsd/credentials.xsd @@ -37,7 +37,7 @@ <sequence> <choice minOccurs="1"> <element name="passwordCredentials" type="identity:PasswordCredentialsRequiredUsername"/> - <any namespace="##other" processContents="lax"> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> <annotation> <xsd:documentation xml:lang="EN" @@ -49,7 +49,6 @@ </annotation> </any> </choice> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </sequence> <attribute name="tenantId" type="xsd:string" use="optional"/> </complexType> |
