From: Abdelmuhaimen Seaudi Date: Sun, 14 Nov 2021 18:44:33 +0000 (+0200) Subject: Correct dynamic properties grpc json serializing X-Git-Tag: 1.2.2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Ftags%2F1.2.2;p=ccsdk%2Fcds.git Correct dynamic properties grpc json serializing Correct the json serializing and escaping in command executor for grpc server Issue-ID: CCSDK-3521 Signed-off-by: Abdelmuhaimen Seaudi Change-Id: I5d0c9fbb7190e8de52bf954ef1af29a6f854f685 (cherry picked from commit 04307eb9aff21a9df0510776be6363e9b71a95b8) --- diff --git a/ms/command-executor/src/main/python/command_executor_handler.py b/ms/command-executor/src/main/python/command_executor_handler.py index a862559cf..eb39f07a4 100644 --- a/ms/command-executor/src/main/python/command_executor_handler.py +++ b/ms/command-executor/src/main/python/command_executor_handler.py @@ -241,7 +241,7 @@ class CommandExecutorHandler(): ### if properties are defined we add them to the command properties = "" if request.properties is not None and len(request.properties) > 0: - properties = " " + re.escape(MessageToJson(request.properties)) + properties = " " + re.escape(MessageToJson(request.properties)).replace('"','\\"') ### TODO: replace with os.environ['VIRTUAL_ENV']? if "ansible-playbook" in request.command: