From a3564dd0155b4dcc89b20c81b726c8fc8f8fedf6 Mon Sep 17 00:00:00 2001 From: Prashant Pandey Date: Sun, 11 Jul 2021 12:02:18 +0530 Subject: [PATCH] Default values for Entity and Config service timeouts in application.conf --- .../default-cluster/application.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hypertrace-service/src/main/resources/configs/hypertrace-graphql-service/default-cluster/application.conf b/hypertrace-service/src/main/resources/configs/hypertrace-graphql-service/default-cluster/application.conf index 637e651..543cf13 100644 --- a/hypertrace-service/src/main/resources/configs/hypertrace-graphql-service/default-cluster/application.conf +++ b/hypertrace-service/src/main/resources/configs/hypertrace-graphql-service/default-cluster/application.conf @@ -5,6 +5,8 @@ attribute.service = { host = ${?ATTRIBUTE_SERVICE_HOST_CONFIG} port = 9001 port = ${?ATTRIBUTE_SERVICE_PORT_CONFIG} + timeout = 10s + timeout = ${?ATTRIBUTE_SERVICE_TIMEOUT} } gateway.service = { @@ -20,7 +22,8 @@ entity.service = { host = localhost host = ${?ENTITY_SERVICE_HOST_CONFIG} port = 9001 - port = ${?ENTITY_SERVICE_PORT_CONFIG} + timeout = 10s + timeout = ${?ENTITY_SERVICE_TIMEOUT} } config.service = { @@ -28,4 +31,6 @@ config.service = { host = ${?CONFIG_SERVICE_HOST_CONFIG} port = 9001 port = ${?CONFIG_SERVICE_PORT_CONFIG} + timeout = 10s + timeout = ${?CONFIG_SERVICE_TIMEOUT} } \ No newline at end of file