diff options
author | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2021-06-01 09:33:24 +0000 |
---|---|---|
committer | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2021-06-01 09:40:18 +0000 |
commit | f49357b57b2d5756f6e30f6e60b797fbd2477997 (patch) | |
tree | d807f70d49b55f462eeb0374a88f436f757422d3 /kubernetes/sdnc/resources/config/conf | |
parent | 84b962398213641e656e8d1750b83f480f531563 (diff) |
[CCSDK] Fix pnf-reg and fault message lost
CCSDK mountpoint-registrar bundle consumes SEC_FAULT_OUTPUT and
VES_PNFREG_OUTPUT DMaaP topics.
Currently dmaap timeout is set to 50000, which is much longer than
jersey.config.client.readTimeout=25000. The bundle is giving up
connection before dmaap timeout and that could cause message lost
if message arrived after client timeout.
This change remove the inappropriate timeout value from
the property file so that the bundle uses default timeout value
defined in java class.
Issue-ID: CCSDK-3320
Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com>
Change-Id: I638af7c1f737b0904cb21c8121f2a08b2737d94b
Diffstat (limited to 'kubernetes/sdnc/resources/config/conf')
-rw-r--r-- | kubernetes/sdnc/resources/config/conf/mountpoint-registrar.properties | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kubernetes/sdnc/resources/config/conf/mountpoint-registrar.properties b/kubernetes/sdnc/resources/config/conf/mountpoint-registrar.properties index 57a16bd488..303e504aa9 100644 --- a/kubernetes/sdnc/resources/config/conf/mountpoint-registrar.properties +++ b/kubernetes/sdnc/resources/config/conf/mountpoint-registrar.properties @@ -23,7 +23,6 @@ topic=unauthenticated.SEC_FAULT_OUTPUT contenttype=application/json group=myG id=C1 -timeout=50000 limit=10000 [pnfRegistration] @@ -41,5 +40,4 @@ topic=unauthenticated.VES_PNFREG_OUTPUT contenttype=application/json group=myG id=C1 -timeout=50000 limit=10000 |