Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
34840cdc
Commit
34840cdc
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Fix getting latest device IP for user with no devices
parent
7c551ec4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/client_ips.py
+5
-0
5 additions, 0 deletions
synapse/storage/client_ips.py
with
5 additions
and
0 deletions
synapse/storage/client_ips.py
+
5
−
0
View file @
34840cdc
...
@@ -90,6 +90,8 @@ class ClientIpStore(background_updates.BackgroundUpdateStore):
...
@@ -90,6 +90,8 @@ class ClientIpStore(background_updates.BackgroundUpdateStore):
are (user_id, device_id) tuples. The values are also dicts, with
are (user_id, device_id) tuples. The values are also dicts, with
keys giving the column names
keys giving the column names
"""
"""
if
not
devices
:
defer
.
returnValue
({})
res
=
yield
self
.
runInteraction
(
res
=
yield
self
.
runInteraction
(
"
get_last_client_ip_by_device
"
,
"
get_last_client_ip_by_device
"
,
...
@@ -110,6 +112,9 @@ class ClientIpStore(background_updates.BackgroundUpdateStore):
...
@@ -110,6 +112,9 @@ class ClientIpStore(background_updates.BackgroundUpdateStore):
@classmethod
@classmethod
def
_get_last_client_ip_by_device_txn
(
cls
,
txn
,
devices
,
retcols
):
def
_get_last_client_ip_by_device_txn
(
cls
,
txn
,
devices
,
retcols
):
if
not
devices
:
return
[]
where_clauses
=
[]
where_clauses
=
[]
bindings
=
[]
bindings
=
[]
for
(
user_id
,
device_id
)
in
devices
:
for
(
user_id
,
device_id
)
in
devices
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment