diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-09-12 16:47:20 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-09-12 16:47:20 +0100 |
commit | 0e200e366d568586e8f7f9dd0beb9b53bef86047 (patch) | |
tree | a803f4ae0d80ed236bc4b86c189b2030538a1121 /synapse/handlers/sync.py | |
parent | fix logline (diff) | |
download | synapse-0e200e366d568586e8f7f9dd0beb9b53bef86047.tar.xz |
correctly log gappy sync metrics
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 34729e7f8c..88ef894d6e 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -1698,7 +1698,7 @@ class SyncHandler(object): sync_result_builder.joined.append(room_sync) - if batch.limited: + if batch.limited and since_token: user_id = sync_result_builder.sync_config.user.to_string() logger.info( "Incremental gappy sync of room %s for user %s with %d state events" % ( |