Skip to content

Commit

Permalink
Increase presence timers even futher
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrKozimor committed Feb 1, 2022
1 parent f5201fb commit 80b18aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/handlers/presence.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@

# If a user was last active in the last LAST_ACTIVE_GRANULARITY, consider them
# "currently_active"
LAST_ACTIVE_GRANULARITY = 5 * 60 * 1000
LAST_ACTIVE_GRANULARITY = 10 * 60 * 1000

# How long to wait until a new /events or /sync request before assuming
# the client has gone.
SYNC_ONLINE_TIMEOUT = 30 * 1000

# How long to wait before marking the user as idle. Compared against last active
IDLE_TIMER = 10 * 60 * 1000
IDLE_TIMER = 12 * 60 * 1000

# How often we expect remote servers to resend us presence.
FEDERATION_TIMEOUT = 30 * 60 * 1000
Expand Down

0 comments on commit 80b18aa

Please sign in to comment.