From 5baa93862e2965b5b5f9044afc0017043d2163ed Mon Sep 17 00:00:00 2001 From: Pavel Zilke Date: Wed, 25 Sep 2024 19:30:15 +0300 Subject: [PATCH] set defaults for some properties --- src/main/resources/application.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 05ee0fb..1034c07 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -43,10 +43,10 @@ kafka.out.success.topic.name=${ERVU_KAFKA_SUCCESS_TOPIC_NAME} kafka.out.response.topic.name=${ERVU_KAFKA_RESPONSE_TOPIC_NAME} # av.rest.address=${AV_REST_ADDRESS} -av.first.timeout.milliseconds=${AV_FIRST_TIMEOUT_MILLISECONDS} -av.retry.max.attempts.count=${AV_RETRY_MAX_ATTEMPTS_COUNT} -av.retry.delay.milliseconds=${AV_RETRY_DELAY_MILLISECONDS} -file.saving.path=${FILE_SAVING_PATH} +av.first.timeout.milliseconds=${AV_FIRST_TIMEOUT_MILLISECONDS:1000} +av.retry.max.attempts.count=${AV_RETRY_MAX_ATTEMPTS_COUNT:10} +av.retry.delay.milliseconds=${AV_RETRY_DELAY_MILLISECONDS:1000} +file.saving.path=${FILE_SAVING_PATH:/transfer/} # s3.out.endpoint=${S3_ENDPOINT} s3.out.port=${S3_PORT}