diff options
author | Jim Hahn <jrh3@att.com> | 2020-06-10 15:44:29 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-06-11 12:28:45 -0400 |
commit | abba1c2f8fc792b63392302fec99ee27147362aa (patch) | |
tree | 93310e97ab67820e2f6ffde946afa7c259e1a7a1 /models-interactions/model-actors/actor.cds/src/test | |
parent | eeb8d3b9c25e792e08ffe2d10b3f4b1d983a46fd (diff) |
Default ActorImpl should have an "operations" property
Added "operations" level to actor properties. Also renamed CommonActorParams
to ActorParams, in the process.
Note: This impacts the properties specified in drools-apps.
Issue-ID: POLICY-2629
Change-Id: I155bcb6ced73cb54e656d34e0b184fb2ed6250d1
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-actors/actor.cds/src/test')
-rw-r--r-- | models-interactions/model-actors/actor.cds/src/test/resources/service.yaml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/models-interactions/model-actors/actor.cds/src/test/resources/service.yaml b/models-interactions/model-actors/actor.cds/src/test/resources/service.yaml index 0d3c76f48..19ff698a3 100644 --- a/models-interactions/model-actors/actor.cds/src/test/resources/service.yaml +++ b/models-interactions/model-actors/actor.cds/src/test/resources/service.yaml @@ -19,9 +19,10 @@ # actors: CDS: - any: - timeout: 10 - port: 6700 - host: my-host - username: my-user - password: my-pass + operations: + any: + timeout: 10 + port: 6700 + host: my-host + username: my-user + password: my-pass |