mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Server: Increase default MAX_TIME_DRIFT to 100ms
This commit is contained in:
parent
7985958f03
commit
8e54a65ca5
@ -16,7 +16,15 @@ const defaultEnvValues: EnvVariables = {
|
||||
ERROR_STACK_TRACES: false,
|
||||
COOKIES_SECURE: false,
|
||||
RUNNING_IN_DOCKER: false,
|
||||
MAX_TIME_DRIFT: 10,
|
||||
|
||||
// Maxiumm allowed drift between NTP time and server time. A few
|
||||
// milliseconds is normally not an issue unless many clients are modifying
|
||||
// the same note at the exact same time. But past a certain limit, it might
|
||||
// mean the server clock is incorrect and should be fixed, as that could
|
||||
// result in clients generating many conflicts.
|
||||
// https://github.com/laurent22/joplin/issues/5738
|
||||
|
||||
MAX_TIME_DRIFT: 100,
|
||||
|
||||
// ==================================================
|
||||
// URL config
|
||||
|
Loading…
Reference in New Issue
Block a user