Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
8199475c
Commit
8199475c
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Ensure we never return a None event from _get_state_for_groups
parent
0d4abf77
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/state.py
+8
-3
8 additions, 3 deletions
synapse/storage/state.py
with
8 additions
and
3 deletions
synapse/storage/state.py
+
8
−
3
View file @
8199475c
...
...
@@ -405,16 +405,21 @@ class StateStore(SQLBaseStore):
state_event
=
state_events
[
event_id
]
state_dict
[(
state_event
.
type
,
state_event
.
state_key
)]
=
state_event
results
[
group
]
=
state_dict
self
.
_state_group_cache
.
update
(
cache_seq_num
,
key
=
group
,
value
=
state_dict
,
value
=
results
[
group
]
,
full
=
(
types
is
None
),
)
# We replace here to remove all the entries with None values.
# Remove all the entries with None values. The None values were just
# used for bookkeeping in the cache.
for
group
,
state_dict
in
results
.
items
():
results
[
group
]
=
{
key
:
value
for
key
,
value
in
state_dict
.
items
()
if
value
key
:
event
for
key
,
event
in
state_dict
.
items
()
if
event
}
defer
.
returnValue
(
results
)
...
...
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