summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-02-14 00:35:04 +0300
committerEd Tanous <edtanous@google.com>2023-02-14 02:33:37 +0300
commit5c5804dd3b9b0050dbb059cdb9fa3e5eaf25ea63 (patch)
tree58335db41c7a116dfad4551dee92a9e7cae11888 /scripts
parent5d3a59d3e77a7e147941887a5285c8a47f199e51 (diff)
downloadbmcweb-5c5804dd3b9b0050dbb059cdb9fa3e5eaf25ea63.tar.xz
Fix bad namespaces
This was missed by me; At the same time as we were resolving the redfish-service-validator failure[1], I was trying to fix this. So in the result I saw: ERROR - Validation has failed: 2 problems found Which I thought was the existing false-positive, but turns out was hiding the namespace issue. Mea Culpa. [1]: https://github.com/DMTF/Redfish-Service-Validator/issues/533 Tested: Redfish service validator actually passes. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I51de9d508539756394ead1bca437ca37b61f5e40
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update_schemas.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/update_schemas.py b/scripts/update_schemas.py
index f93082cf22..022396d1e6 100755
--- a/scripts/update_schemas.py
+++ b/scripts/update_schemas.py
@@ -348,10 +348,10 @@ with open(metadata_index_path, "w") as metadata_index:
'/redfish/v1/schema/OpenBMCAccountService_v1.xml">\n'
)
metadata_index.write(
- ' <edmx:Include Namespace="OemAccountService"/>\n'
+ ' <edmx:Include Namespace="OpenBMCAccountService"/>\n'
)
metadata_index.write(
- ' <edmx:Include Namespace="OemAccountService.v1_0_0"/>\n'
+ ' <edmx:Include Namespace="OpenBMCAccountService.v1_0_0"/>\n'
)
metadata_index.write(" </edmx:Reference>\n")