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
eeda4e61
Commit
eeda4e61
authored
8 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Limit the number of prev_events of new events
parent
d24197be
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/handlers/message.py
+13
-0
13 additions, 0 deletions
synapse/handlers/message.py
with
13 additions
and
0 deletions
synapse/handlers/message.py
+
13
−
0
View file @
eeda4e61
...
...
@@ -34,6 +34,7 @@ from ._base import BaseHandler
from
canonicaljson
import
encode_canonical_json
import
logging
import
random
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -415,6 +416,18 @@ class MessageHandler(BaseHandler):
builder
.
room_id
,
)
# We want to limit the max number of prev events we point to in our
# new event
if
len
(
latest_ret
)
>
10
:
# Sort by reverse depth, so we point to the most recent.
latest_ret
.
sort
(
key
=
lambda
a
:
-
a
[
2
])
new_latest_ret
=
latest_ret
[:
5
]
# We also randomly point to some of the older events, to make
# sure that we don't completely ignore the older events.
new_latest_ret
.
extend
(
random
.
sample
(
latest_ret
,
5
))
latest_ret
=
new_latest_ret
if
latest_ret
:
depth
=
max
([
d
for
_
,
_
,
d
in
latest_ret
])
+
1
else
:
...
...
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