Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add parameter for on_error to BusABC.send_periodic#1283

Open
andebjor wants to merge 1 commit intohardbyte:main from
andebjor:periodic_callback_arg
Open

Add parameter for on_error to BusABC.send_periodic #1283
andebjor wants to merge 1 commit intohardbyte:main from
andebjor:periodic_callback_arg

Conversation

@andebjor
Copy link

@andebjor andebjor commented Mar 14, 2022

If there is an error while sending messages in a (background) periodic
task, then the on_error callback is called, if set. If the callback is
configured and returns True then the task continues, otherwise it is
aborted.

While it is possible to update a task with a callback after the task has
been created, this procedure is prone to a race condition where the
callback might not be configured in time for the first send event. Thus,
if the first send fails and the callback has not yet been configured,
the task will abort.

This commit solves the race condition issue by adding an argument to
BusABC.send_periodic to specify the callback. By including the
callback in the constructor it will be deterministically active for all
sends in the task. This fixes issue #1282.

This commit also adds myself to the CONTRIBUTORS list.

Copy link

codecov bot commented Mar 15, 2022
edited
Loading

Codecov Report

Merging #1283 (a0e1f92) into develop (af55b0a) will not change coverage.
The diff coverage is 100.00%.

@@ Coverage Diff @@
## develop #1283 +/- ##
========================================
 Coverage 66.02% 66.02% 
========================================
 Files 86 86 
 Lines 8915 8915 
========================================
 Hits 5886 5886 
 Misses 3029 3029 

If there is an error while sending messages in a (background) periodic
task, then the `on_error` callback is called, if set. If the callback is
configured and returns `True` then the task continues, otherwise it is
aborted.
While it is possible to update a task with a callback after the task has
been created, this procedure is prone to a race condition where the
callback might not be configured in time for the first send event. Thus,
if the first send fails and the callback has not yet been configured,
the task will abort.
This commit solves the race condition issue by adding an argument to
`BusABC.send_periodic` to specify the callback. By including the
callback in the constructor it will be deterministically active for all
sends in the task. This fixes issue hardbyte#1282.
This commit also adds myself to the CONTRIBUTORS list.
task = cast(
_SelfRemovingCyclicTask,
self._send_periodic_internal(msgs, period, duration),
self._send_periodic_internal(msgs, period, duration, on_error),
Copy link
Collaborator

@zariiii9003 zariiii9003 Jun 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will fail for subclasses that reimplement _send_periodic_internal()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

@zariiii9003 zariiii9003 zariiii9003 left review comments

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

Comments

AltStyle によって変換されたページ (->オリジナル) /