Skip to content

Commit

Permalink
Update production configuration to check for ENV variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
JarrodBaker committed Oct 11, 2022
1 parent 5386607 commit 2465546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,8 @@ ot {
}
dataVersion {
major = 22
major = ${?DATA_MAJOR}
minor = 02
minor = ${?DATA_MINOR}
patch = 0
patch = ${?DATA_PATCH}
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions production.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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}

0 comments on commit 2465546

Please sign in to comment.