-
Notifications
You must be signed in to change notification settings - Fork 105
fix(celery): add no_live_updates to skip backend updates #695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughA new Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (2)
secator/celery.py (2)
246-248
: Additional console print – minor verbosity nit
mark_runner_started
already emits adebug
call; adding anotherInfo
object can double the noise in worker logs. Consider gating it behind the same debug mechanism or a verbosity flag to keep worker output lean.
268-270
: Same verbosity concern formark_runner_completed
As above, this extraconsole.print()
may be redundant given the existingdebug
call. Align both functions to use a single logging path.
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
secator/celery.py
(3 hunks)secator/runners/_base.py
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: integration (3.11, ubuntu-latest)
- GitHub Check: Analyze (python)
🔇 Additional comments (1)
secator/runners/_base.py (1)
118-122
:no_live_updates
option introduced – verify that it is plumbed everywhere it is needed
The flag is now part ofrun_opts
, but onlyupdate_state()
(insecator/celery.py
) currently checks it. Any caller that still invokesupdate_state()
in a tight loop will continue to do so; the call just short-circuits. For very chatty runners that loop rapidly this still creates avoidable overhead.
- Consider guarding the call-site instead (or additionally) so
update_state()
is not called at all when the flag is set.- Please add the new option to user-facing docs / help text for completeness.
- Unit-test a runner executed with
no_live_updates=True
to ensure no backend calls are made.
🤖 I have created a release *beep* *boop* --- ## [0.16.3](v0.16.2...v0.16.3) (2025-06-11) ### Bug Fixes * bup file flag ([#690](#690)) ([83d83d7](83d83d7)) * **celery:** add no_live_updates to skip backend updates ([#695](#695)) ([c99599c](c99599c)) * **dalfox:** use jsonl option instead of json ([#692](#692)) ([c406e34](c406e34)) * **mongodb:** add all output types ([#696](#696)) ([af98935](af98935)) * show info message for mark_runner_started / mark_runner_completed ([#694](#694)) ([ed0f6cb](ed0f6cb)) * **workflow:** put cariddi in crawlers group ([#693](#693)) ([a9e1afd](a9e1afd)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Summary by CodeRabbit