Skip to content
Snippets Groups Projects
Commit ee34b497 authored by garciadeblas's avatar garciadeblas
Browse files

Remove unnecessary logs in secret checks under odu_libs/common.py


Change-Id: Ie4df4d4ff661e563ad2c441a19333be60e78171e
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 926ffac3
No related branches found
No related tags found
No related merge requests found
......@@ -26,14 +26,11 @@ async def create_secret(self, secret_name, secret_namespace, secret_key, secret_
name=secret_name,
namespace=secret_namespace,
)
self.logger.debug(f"Result from async call: { returned_secret_data }")
self.logger.debug("Comparing secret values")
returned_secret_value = base64.b64decode(
returned_secret_data[secret_key]
).decode("utf-8")
self.logger.debug(f"secret_data_original={secret_value}")
self.logger.debug(f"secret_data_received={returned_secret_value}")
# self.logger.debug(f"secret_data_original={secret_value}")
# self.logger.debug(f"secret_data_received={returned_secret_value}")
self.logger.info(
f"Result of secret comparison: {secret_value==returned_secret_value}"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment