Skip to content

Commit 91f4aa8

Browse files
committed
Fix #231: update configuration file parameters
1 parent 132a7c9 commit 91f4aa8

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

RELEASES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ LogList Release Notes
55
-----
66
This is the first release after Play framework update.
77

8-
Remember to update the configuration file:
8+
Remember to update the configuration file (`application.conf`):
9+
- `evolutions.autocommit` is now `play.evolutions.autocommit`
910
- `application.secret` is now `play.http.secret.key`
11+
- `application.langs` is now `play.i18n.langs` (and it should be a list rather
12+
than a single string)

scalajvm/conf/application.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ play.http.secret.key="kZCA75ED`u;4xUB1RhKj?Z=In[8u=7;Ehb>R[y<JSdm0@=Q?spk1Fih0Fn
1212

1313
# The application languages
1414
# ~~~~~
15-
application.langs="en"
15+
play.i18n.langs=["en"]
1616

1717
# Maximum number of items in an RSS feed
1818
# ~~~~~
@@ -51,7 +51,7 @@ db.default.url=${DATABASE_URL}
5151
# ~~~~~
5252
# You can disable evolutions if needed
5353
# evolutionplugin=disabled
54-
evolutions.autocommit=false
54+
play.evolutions.autocommit=false
5555
play.evolutions.db.default.autoApply=${APPLY_EVOLUTIONS_SILENTLY}
5656

5757
# Logger

0 commit comments

Comments
 (0)