default WS drop to 0% on dev

pull/3955/head
Thibault Duplessis 2018-01-03 23:06:02 -05:00
parent d700484e74
commit 976d34587f
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ net {
}
email = "contact@lichess.org"
crawlable = false
websocket_drop_percent = 0
}
forcedev = false
play {

View File

@ -120,7 +120,7 @@ final class Env(
val websocketDropPercentSetting = settingStore[Int](
"websocketDropPercent",
default = 100,
default = config getInt "net.websocket_drop_percent",
text = "Percentage of websockets to drop. Experimenting server restart issues. Don't touch it.".some,
persist = false
)