diff options
author | 2021-06-24 16:30:23 +0100 | |
---|---|---|
committer | 2021-06-25 16:28:59 +0100 | |
commit | a3482504ead21591265027629da810dac2290603 (patch) | |
tree | 78eaf5ec2eb27f668df95ea447109413a37eeb2d /runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json | |
parent | c2f0aac6784db56706931a5fa409e18a3dc872cd (diff) |
Refactor participant event handling
Issue-ID: POLICY-3268
Change-Id: I02b03fd9f9f4399e045e766baace203f42e678cf
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json')
-rw-r--r-- | runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json | 44 |
1 files changed, 28 insertions, 16 deletions
diff --git a/runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json b/runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json index cce0ab5ee..2be642943 100644 --- a/runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json +++ b/runtime-controlloop/src/test/resources/parameters/MinimumParametersH2.json @@ -1,10 +1,14 @@ { - "name":"PapGroup", - "restServerParameters":{ - "host":"0.0.0.0", - "port":6969, - "userName":"healthcheck", - "password":"zb!XztG34" + "name": "PapGroup", + "supervisionScannerIntervalSec": 1000, + "participantStateChangeIntervalSec": 1000, + "participantClUpdateIntervalSec": 1000, + "participantClStateChangeIntervalSec": 1000, + "restServerParameters": { + "host": "0.0.0.0", + "port": 6969, + "userName": "healthcheck", + "password": "zb!XztG34" }, "pdpParameters": { "heartBeatMs": 1, @@ -27,15 +31,23 @@ "persistenceUnit": "PdpGroupTest" }, "topicParameterGroup": { - "topicSources" : [{ - "topic" : "POLICY-PDP-PAP", - "servers" : [ "message-router" ], - "topicCommInfrastructure" : "dmaap" - }], - "topicSinks" : [{ - "topic" : "POLICY-PDP-PAP", - "servers" : [ "message-router" ], - "topicCommInfrastructure" : "dmaap" - }] + "topicSources": [ + { + "topic": "POLICY-PDP-PAP", + "servers": [ + "message-router" + ], + "topicCommInfrastructure": "dmaap" + } + ], + "topicSinks": [ + { + "topic": "POLICY-PDP-PAP", + "servers": [ + "message-router" + ], + "topicCommInfrastructure": "dmaap" + } + ] } } |