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
Package registry
Container Registry
Model registry
Operate
Terraform modules
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
Timo Ley
synapse
Commits
03268885
Unverified
Commit
03268885
authored
3 years ago
by
Patrick Cloke
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove some unused variables/parameters. (#12187)
parent
180d8ff0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/12187.misc
+1
-0
1 addition, 0 deletions
changelog.d/12187.misc
synapse/storage/databases/main/roommember.py
+5
-9
5 additions, 9 deletions
synapse/storage/databases/main/roommember.py
with
6 additions
and
9 deletions
changelog.d/12187.misc
0 → 100644
+
1
−
0
View file @
03268885
Remove unused variables.
This diff is collapsed.
Click to expand it.
synapse/storage/databases/main/roommember.py
+
5
−
9
View file @
03268885
...
@@ -46,7 +46,7 @@ from synapse.storage.roommember import (
...
@@ -46,7 +46,7 @@ from synapse.storage.roommember import (
ProfileInfo
,
ProfileInfo
,
RoomsForUser
,
RoomsForUser
,
)
)
from
synapse.types
import
PersistedEventPosition
,
StateMap
,
get_domain_from_id
from
synapse.types
import
PersistedEventPosition
,
get_domain_from_id
from
synapse.util.async_helpers
import
Linearizer
from
synapse.util.async_helpers
import
Linearizer
from
synapse.util.caches
import
intern_string
from
synapse.util.caches
import
intern_string
from
synapse.util.caches.descriptors
import
_CacheContext
,
cached
,
cachedList
from
synapse.util.caches.descriptors
import
_CacheContext
,
cached
,
cachedList
...
@@ -273,7 +273,7 @@ class RoomMemberWorkerStore(EventsWorkerStore):
...
@@ -273,7 +273,7 @@ class RoomMemberWorkerStore(EventsWorkerStore):
txn
.
execute
(
sql
,
(
room_id
,))
txn
.
execute
(
sql
,
(
room_id
,))
res
=
{}
res
=
{}
for
count
,
membership
in
txn
:
for
count
,
membership
in
txn
:
summary
=
res
.
setdefault
(
membership
,
MemberSummary
([],
count
))
res
.
setdefault
(
membership
,
MemberSummary
([],
count
))
# we order by membership and then fairly arbitrarily by event_id so
# we order by membership and then fairly arbitrarily by event_id so
# heroes are consistent
# heroes are consistent
...
@@ -839,18 +839,14 @@ class RoomMemberWorkerStore(EventsWorkerStore):
...
@@ -839,18 +839,14 @@ class RoomMemberWorkerStore(EventsWorkerStore):
with
Measure
(
self
.
_clock
,
"
get_joined_hosts
"
):
with
Measure
(
self
.
_clock
,
"
get_joined_hosts
"
):
return
await
self
.
_get_joined_hosts
(
return
await
self
.
_get_joined_hosts
(
room_id
,
state_group
,
state_entry
.
state
,
state_entry
=
state_entry
room_id
,
state_group
,
state_entry
=
state_entry
)
)
@cached
(
num_args
=
2
,
max_entries
=
10000
,
iterable
=
True
)
@cached
(
num_args
=
2
,
max_entries
=
10000
,
iterable
=
True
)
async
def
_get_joined_hosts
(
async
def
_get_joined_hosts
(
self
,
self
,
room_id
:
str
,
state_group
:
int
,
state_entry
:
"
_StateCacheEntry
"
room_id
:
str
,
state_group
:
int
,
current_state_ids
:
StateMap
[
str
],
state_entry
:
"
_StateCacheEntry
"
,
)
->
FrozenSet
[
str
]:
)
->
FrozenSet
[
str
]:
# We don't use `state_group`, its there so that we can cache based on
# We don't use `state_group`, it
'
s there so that we can cache based on
# it. However, its important that its never None, since two
# it. However, its important that its never None, since two
# current_state's with a state_group of None are likely to be different.
# current_state's with a state_group of None are likely to be different.
#
#
...
...
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