Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release-v1.22.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Oct 26, 2020
2 parents e8dbbcb + 9e0f5a0 commit ff7f0e8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions changelog.d/8654.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix `user_daily_visits` to not have duplicate rows for UA. Broke in v1.22.0rc1.
1 change: 1 addition & 0 deletions changelog.d/8656.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a bug introduced in v1.22.0rc1 where presence events were not properly passed to application services.
7 changes: 4 additions & 3 deletions synapse/handlers/appservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ async def _handle_presence(
user=user, service=service, from_key=from_key,
)
time_now = self.clock.time_msec()
presence_events = [
events.extend(
{
"type": "m.presence",
"sender": event.user_id,
Expand All @@ -297,8 +297,9 @@ async def _handle_presence(
),
}
for event in presence_events
]
events = events + presence_events
)

return events

async def query_user_exists(self, user_id):
"""Check if any application service knows this user_id exists.
Expand Down
9 changes: 5 additions & 4 deletions synapse/storage/databases/main/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,10 @@ def _generate_user_daily_visits(txn):
now = self._clock.time_msec()

# A note on user_agent. Technically a given device can have multiple
# user agents, so we need to decide which one to pick. We could have handled this
# in number of ways, but given that we don't _that_ much have gone for MAX()
# For more details of the other options considered see
# user agents, so we need to decide which one to pick. We could have
# handled this in number of ways, but given that we don't care
# _that_ much we have gone for MAX(). For more details of the other
# options considered see
# https://github.com/matrix-org/synapse/pull/8503#discussion_r502306111
sql = """
INSERT INTO user_daily_visits (user_id, device_id, timestamp, user_agent)
Expand All @@ -299,7 +300,7 @@ def _generate_user_daily_visits(txn):
WHERE last_seen > ? AND last_seen <= ?
AND udv.timestamp IS NULL AND users.is_guest=0
AND users.appservice_id IS NULL
GROUP BY u.user_id, u.device_id, u.user_agent
GROUP BY u.user_id, u.device_id
"""

# This means that the day has rolled over but there could still
Expand Down

0 comments on commit ff7f0e8

Please sign in to comment.