Skip to content

Commit c02ff7b

Browse files
committed
By default, run platform in production mode
In dev/test environments, use the env var HMDA_IS_DEMO to override these default values
1 parent f11bd25 commit c02ff7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ hmda {
6262
timeout = 10
6363
timeout = ${?HMDA_HTTP_TIMEOUT}
6464
}
65-
isDemo = true
65+
isDemo = false
6666
isDemo = ${?HMDA_IS_DEMO}
6767
}
6868

persistence-model/src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ cassandra-query-journal {
101101
hmda {
102102
actor-lookup-timeout = 5
103103
persistent-actor-timeout = 3600
104-
isDemo = true
104+
isDemo = false
105105
isDemo = ${?HMDA_IS_DEMO}
106106
}

0 commit comments

Comments
 (0)