diff options
author | KAPIL SINGAL <ks220y@att.com> | 2021-11-29 19:09:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-11-29 19:09:19 +0000 |
commit | 886d02197ce3a6b3ecb0c40d191e649b23e3bb91 (patch) | |
tree | 2a5eacb2c797d7a3df27e65d4a2e4d974265b891 /ms/command-executor | |
parent | 09710d9346393edb3c7ee39f5eccc409a91d547b (diff) | |
parent | 04307eb9aff21a9df0510776be6363e9b71a95b8 (diff) |
Merge "Correct dynamic properties grpc json serializing"
Diffstat (limited to 'ms/command-executor')
-rw-r--r-- | ms/command-executor/src/main/python/command_executor_handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 6a301574b..b6d644cba 100644 --- a/ms/command-executor/src/main/python/command_executor_handler.py +++ b/ms/command-executor/src/main/python/command_executor_handler.py @@ -244,7 +244,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('"','\\"') # compatibility hack # check if the path for the request.command does not contain UUID, then add it after cba_name/cba_version path. |