fix(helm): drop the CELERY_ACCEPT_CONTENT default - #32
Conversation
The value was a JSON array string, which the worker now parses as a comma separated list. Let the image own the default instead.
|
Warning Review limit reached
Next review available in: 52 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
Removes the
CELERY_ACCEPT_CONTENTdefault fromdefaults.env.The chart set it to the JSON array string
["json", "pickle"]. The v0.16.2 image ignored it, becauseaccept_contentwas hardcoded inceleryconf/base.py. Climate-REF/climate-ref#850 reads it withenv.list(), which splits on commas, so the same value yields['["json"', '"pickle"]']and every worker dies at startup withSerializerNotInstalled: No encoder/decoder installed for ["json".json,ref-json.CELERY_TASK_COMPRESSION,CELERY_RESULT_COMPRESSIONand the comma separatedCELERY_ACCEPT_CONTENT, matching the upstream chart.helm/README.md: setjson,ref-json,pickleover a rolling upgrade, then revert.ref-jsonbodies, so its broker queue view will not show task args. Task rows still appear, because worker events are plain JSON.Safe with either image, so it does not need to land with the version bump. The v0.16.2 image ignores the variable, and the post-#850 image falls back to its own default.
The compose stack still pins v0.16.2, so
docker/docker-compose.yamlis untouched. Flower'sCELERY_ACCEPT_CONTENTthere needs updating in the bump PR.