From 24655464e5ef9cbdcea515aa158e4addee2999fc Mon Sep 17 00:00:00 2001 From: Jarrod Baker Date: Tue, 11 Oct 2022 15:50:44 +0100 Subject: [PATCH] Update production configuration to check for ENV variables. --- conf/application.conf | 3 --- production.conf | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/conf/application.conf b/conf/application.conf index ccd4105..13c8b4f 100644 --- a/conf/application.conf +++ b/conf/application.conf @@ -28,11 +28,8 @@ ot { } dataVersion { major = 22 - major = ${?DATA_MAJOR} minor = 02 - minor = ${?DATA_MINOR} patch = 0 - patch = ${?DATA_PATCH} } } } diff --git a/production.conf b/production.conf index a4cfca2..523099d 100644 --- a/production.conf +++ b/production.conf @@ -31,4 +31,6 @@ ot.elasticsearch { port = 9200 } ot.meta.dataVersion.major = 22 +ot.meta.dataVersion.major = ${?DATA_MAJOR} ot.meta.dataVersion.minor = 08 +ot.meta.dataVersion.minor = ${?DATA_MINOR}