Correct dynamic properties grpc json serializing 19/125819/2 1.2.2
authorAbdelmuhaimen Seaudi <abdelmuhaimen.seaudi@orange.com>
Sun, 14 Nov 2021 18:44:33 +0000 (20:44 +0200)
committerDan Timoney <dtimoney@att.com>
Tue, 7 Dec 2021 17:09:40 +0000 (17:09 +0000)
Correct the json serializing and escaping in command executor
for grpc server

Issue-ID: CCSDK-3521
Signed-off-by: Abdelmuhaimen Seaudi <abdelmuhaimen.seaudi@orange.com>
Change-Id: I5d0c9fbb7190e8de52bf954ef1af29a6f854f685
(cherry picked from commit 04307eb9aff21a9df0510776be6363e9b71a95b8)

ms/command-executor/src/main/python/command_executor_handler.py

index a862559..eb39f07 100644 (file)
@@ -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: