diff options
author | Kajur, Harish (vk250x) <vk250x@att.com> | 2019-07-16 21:52:42 -0400 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2019-08-05 20:30:59 -0400 |
commit | df1c5a7a3d1c6f1f4b98604707d48a7d93f3fbb8 (patch) | |
tree | 318bd303512fde0447e1b84789685257e09a77e0 /components/aai-traversal/resources/config/aaiconfig.properties | |
parent | 54668628a12b389d40853c58330977a70bd4795d (diff) |
Add the dsl timeout properties for traversal
Issue-ID: AAI-2509
Change-Id: Ie45f31686259f6d5e6dcc5948003df8c0b624874
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
Diffstat (limited to 'components/aai-traversal/resources/config/aaiconfig.properties')
-rw-r--r-- | components/aai-traversal/resources/config/aaiconfig.properties | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/components/aai-traversal/resources/config/aaiconfig.properties b/components/aai-traversal/resources/config/aaiconfig.properties index 3859590..0f23eda 100644 --- a/components/aai-traversal/resources/config/aaiconfig.properties +++ b/components/aai-traversal/resources/config/aaiconfig.properties @@ -79,3 +79,16 @@ aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }} #default timeout limit added for traversal if not overridden (in ms) aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }} + +#timeout for traversal dsl enabled flag +aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }} + +#timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms) +aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }} + +#default timeout limit added for traversal dsl if not overridden (in ms) +aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }} + +# Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed +aai.resource.formatter.threshold=10 +aai.dsl.override={{ .Values.config.dslOverride }} |