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
b260f929
Commit
b260f929
authored
8 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Ignore AlreadyCalled errors on timer cancel
parent
18b7eb83
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/push/emailpusher.py
+10
-2
10 additions, 2 deletions
synapse/push/emailpusher.py
synapse/push/httppusher.py
+6
-1
6 additions, 1 deletion
synapse/push/httppusher.py
with
16 additions
and
3 deletions
synapse/push/emailpusher.py
+
10
−
2
View file @
b260f929
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
# limitations under the License.
# limitations under the License.
from
twisted.internet
import
defer
,
reactor
from
twisted.internet
import
defer
,
reactor
from
twisted.internet.error
import
AlreadyCalled
,
AlreadyCancelled
import
logging
import
logging
...
@@ -92,7 +93,11 @@ class EmailPusher(object):
...
@@ -92,7 +93,11 @@ class EmailPusher(object):
def
on_stop
(
self
):
def
on_stop
(
self
):
if
self
.
timed_call
:
if
self
.
timed_call
:
self
.
timed_call
.
cancel
()
try
:
self
.
timed_call
.
cancel
()
except
(
AlreadyCalled
,
AlreadyCancelled
):
pass
self
.
timed_call
=
None
@defer.inlineCallbacks
@defer.inlineCallbacks
def
on_new_notifications
(
self
,
min_stream_ordering
,
max_stream_ordering
):
def
on_new_notifications
(
self
,
min_stream_ordering
,
max_stream_ordering
):
...
@@ -189,7 +194,10 @@ class EmailPusher(object):
...
@@ -189,7 +194,10 @@ class EmailPusher(object):
soonest_due_at
=
should_notify_at
soonest_due_at
=
should_notify_at
if
self
.
timed_call
is
not
None
:
if
self
.
timed_call
is
not
None
:
self
.
timed_call
.
cancel
()
try
:
self
.
timed_call
.
cancel
()
except
(
AlreadyCalled
,
AlreadyCancelled
):
pass
self
.
timed_call
=
None
self
.
timed_call
=
None
if
soonest_due_at
is
not
None
:
if
soonest_due_at
is
not
None
:
...
...
This diff is collapsed.
Click to expand it.
synapse/push/httppusher.py
+
6
−
1
View file @
b260f929
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
from
synapse.push
import
PusherConfigException
from
synapse.push
import
PusherConfigException
from
twisted.internet
import
defer
,
reactor
from
twisted.internet
import
defer
,
reactor
from
twisted.internet.error
import
AlreadyCalled
,
AlreadyCancelled
import
logging
import
logging
import
push_rule_evaluator
import
push_rule_evaluator
...
@@ -109,7 +110,11 @@ class HttpPusher(object):
...
@@ -109,7 +110,11 @@ class HttpPusher(object):
def
on_stop
(
self
):
def
on_stop
(
self
):
if
self
.
timed_call
:
if
self
.
timed_call
:
self
.
timed_call
.
cancel
()
try
:
self
.
timed_call
.
cancel
()
except
(
AlreadyCalled
,
AlreadyCancelled
):
pass
self
.
timed_call
=
None
@defer.inlineCallbacks
@defer.inlineCallbacks
def
_process
(
self
):
def
_process
(
self
):
...
...
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