Fix default timeout for /sync (#615) (#679)

The sync timeout should be 0 according to the spec[1]

[1] https://matrix.org/docs/spec/client_server/r0.4.0.html#get-matrix-client-r0-sync

Signed-off-by: Reto Brunner <brunnre8@gmail.com>
main
Reto 2019-01-10 11:28:13 +01:00 committed by Brendan Abolivier
parent 170264404e
commit 088a939461
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import (
log "github.com/sirupsen/logrus"
)
const defaultSyncTimeout = time.Duration(30) * time.Second
const defaultSyncTimeout = time.Duration(0)
const defaultTimelineLimit = 20
// syncRequest represents a /sync request, with sensible defaults/sanity checks applied.