Re: [edk2-devel] [edk2-staging][PATCH v2 5/5] edk2-staging/RedfishClientPkg: Add missing module

2022-06-20 Thread Abner Chang
Reviewed-by: Abner Chang 

> -Original Message-
> From: Wang, Nickle (Server BIOS) 
> Sent: Tuesday, June 21, 2022 9:48 AM
> To: devel@edk2.groups.io
> Cc: Wang, Nickle (Server BIOS) ; Chang, Abner (HPS
> SW/FW Technologist) ; Yang Atom
> ; Nick Ramirez 
> Subject: [edk2-staging][PATCH v2 5/5] edk2-staging/RedfishClientPkg: Add
> missing module
> 
> Add missing module import for conditional, RfCollection, RfResource,
> RfResourceRaw, hashlib and OrderedDict
> 
> Signed-off-by: Nickle Wang 
> Cc: Abner Chang 
> Cc: Yang Atom 
> Cc: Nick Ramirez 
> ---
>  .../Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py | 5 -
>  .../Tools/Redfish-Profile-Simulator/v1sim/resource.py| 2 ++
>  2 files changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/RedfishClientPkg/Tools/Redfish-Profile-
> Simulator/v1sim/redfishURIs.py b/RedfishClientPkg/Tools/Redfish-Profile-
> Simulator/v1sim/redfishURIs.py
> index 35d3794cc6..53a4484979 100644
> --- a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py
> +++ b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py
> @@ -1,7 +1,7 @@
>  #
> 
>  # Copyright Notice:
> 
>  # Copyright (c) 2019, Intel Corporation. All rights reserved.
> 
> -# (C) Copyright 2021 Hewlett Packard Enterprise Development LP
> 
> +# (C) Copyright 2021-2022 Hewlett Packard Enterprise Development LP
> 
>  # SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  #
> 
>  # Copyright Notice:
> 
> @@ -16,6 +16,9 @@ from flask import request
> 
> 
>  from .flask_redfish_auth import RfHTTPBasicOrTokenAuth
> 
> 
> 
> +from redfishProfileSimulator import conditional
> 
> +from v1sim.resource import RfCollection, RfResource, RfResourceRaw
> 
> +
> 
>  from werkzeug.serving import WSGIRequestHandler
> 
> 
> 
>  def rfApi_SimpleServer(root, versions, host="127.0.0.1", port=5000, cert="",
> key=""):
> 
> diff --git 
> a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> index 0c7a838281..f6bd15cf32 100644
> --- a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> +++ b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> @@ -15,6 +15,8 @@ import os
>  import sys
> 
> 
> 
>  import flask
> 
> +import hashlib
> 
> +from collections import OrderedDict
> 
> 
> 
>  if sys.version_info >= (3, 5):
> 
>  from typing import Type
> 
> --
> 2.32.0.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#90648): https://edk2.groups.io/g/devel/message/90648
Mute This Topic: https://groups.io/mt/91891768/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-




[edk2-devel] [edk2-staging][PATCH v2 5/5] edk2-staging/RedfishClientPkg: Add missing module

2022-06-20 Thread Nickle Wang
Add missing module import for conditional, RfCollection, RfResource,
RfResourceRaw, hashlib and OrderedDict

Signed-off-by: Nickle Wang 
Cc: Abner Chang 
Cc: Yang Atom 
Cc: Nick Ramirez 
---
 .../Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py | 5 -
 .../Tools/Redfish-Profile-Simulator/v1sim/resource.py| 2 ++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py 
b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py
index 35d3794cc6..53a4484979 100644
--- a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py
+++ b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/redfishURIs.py
@@ -1,7 +1,7 @@
 #
 # Copyright Notice:
 # Copyright (c) 2019, Intel Corporation. All rights reserved.
-# (C) Copyright 2021 Hewlett Packard Enterprise Development LP
+# (C) Copyright 2021-2022 Hewlett Packard Enterprise Development LP
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 # Copyright Notice:
@@ -16,6 +16,9 @@ from flask import request
 
 from .flask_redfish_auth import RfHTTPBasicOrTokenAuth
 
+from redfishProfileSimulator import conditional
+from v1sim.resource import RfCollection, RfResource, RfResourceRaw
+
 from werkzeug.serving import WSGIRequestHandler
 
 def rfApi_SimpleServer(root, versions, host="127.0.0.1", port=5000, cert="", 
key=""):
diff --git a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py 
b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
index 0c7a838281..f6bd15cf32 100644
--- a/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
+++ b/RedfishClientPkg/Tools/Redfish-Profile-Simulator/v1sim/resource.py
@@ -15,6 +15,8 @@ import os
 import sys
 
 import flask
+import hashlib
+from collections import OrderedDict
 
 if sys.version_info >= (3, 5):
 from typing import Type
-- 
2.32.0.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#90642): https://edk2.groups.io/g/devel/message/90642
Mute This Topic: https://groups.io/mt/91891768/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-