diff options
author | KAPIL SINGAL <ks220y@att.com> | 2020-08-24 18:06:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-08-24 18:06:49 +0000 |
commit | d8717dfc2217fd641279d835c53bb5557b4384a7 (patch) | |
tree | d1f48fca0a38e8b85fe00b38e49b18b0e51355a4 /components | |
parent | d586bc5373e079d03e2387dfeb5f9bf323edd3f6 (diff) | |
parent | 0f0b5a02d777482e0011b3bc7276d410ee643ae8 (diff) |
Merge "Add request IDs in command-executor log"
Diffstat (limited to 'components')
-rw-r--r-- | components/model-catalog/proto-definition/proto/CommandExecutor.proto | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/model-catalog/proto-definition/proto/CommandExecutor.proto b/components/model-catalog/proto-definition/proto/CommandExecutor.proto index ac6921965..bad6a01c3 100644 --- a/components/model-catalog/proto-definition/proto/CommandExecutor.proto +++ b/components/model-catalog/proto-definition/proto/CommandExecutor.proto @@ -17,6 +17,8 @@ message ExecutionInput { google.protobuf.Struct properties = 6; // Request Time Stamp google.protobuf.Timestamp timestamp = 7; + string subRequestId = 8; + string originatorId = 9; } message PrepareEnvInput { @@ -28,6 +30,8 @@ message PrepareEnvInput { int32 timeOut = 5; google.protobuf.Struct properties = 6; google.protobuf.Timestamp timestamp = 7; + string subRequestId = 8; + string originatorId = 9; } message Identifiers { |