From 004427de00e920bb6d02135213f03b165255f63a Mon Sep 17 00:00:00 2001 From: Gunnar Mills Date: Thu, 23 Sep 2021 14:59:33 -0500 Subject: [PATCH 1/2] Move schemapack default to 2021.2 2021.2 was released Sept 22nd. Move the schemapack default (i.e. if --source not given) to 2021.2 Signed-off-by: Gunnar Mills --- schema_pack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema_pack.py b/schema_pack.py index be9ddc3..7f2a3d1 100644 --- a/schema_pack.py +++ b/schema_pack.py @@ -10,7 +10,7 @@ import requests # live_zip_uri = 'http://redfish.dmtf.org/schemas/DSP8010_2021.1.zip' -live_zip_uri = 'https://www.dmtf.org/sites/default/files/standards/documents/DSP8010_2021.1.zip' +live_zip_uri = 'https://www.dmtf.org/sites/default/files/standards/documents/DSP8010_2021.2.zip' my_logger = logging.getLogger() @@ -59,4 +59,4 @@ def setup_schema_pack(uri, local_dir): args = argget.parse_args() - setup_schema_pack(args.source, args.schema_directory) \ No newline at end of file + setup_schema_pack(args.source, args.schema_directory) From e907682896d15c4d2d57735212875710a289e5a1 Mon Sep 17 00:00:00 2001 From: Gunnar Mills Date: Fri, 24 Sep 2021 09:36:47 -0500 Subject: [PATCH 2/2] Point at unversioned DSP8010 Signed-off-by: Gunnar Mills --- schema_pack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema_pack.py b/schema_pack.py index 7f2a3d1..4ad0b0b 100644 --- a/schema_pack.py +++ b/schema_pack.py @@ -10,7 +10,7 @@ import requests # live_zip_uri = 'http://redfish.dmtf.org/schemas/DSP8010_2021.1.zip' -live_zip_uri = 'https://www.dmtf.org/sites/default/files/standards/documents/DSP8010_2021.2.zip' +live_zip_uri = 'https://www.dmtf.org/sites/default/files/standards/documents/DSP8010.zip' my_logger = logging.getLogger()