[chore] Mount worker-triggers in all compose stacks#4743
Draft
jp-agenta wants to merge 1 commit into
Draft
Conversation
Adds a worker-triggers service mirroring worker-webhooks across every OSS and EE compose file so the trigger dispatch worker actually runs: gh/gh.local/gh.ssl (newrelic array command, or plain python for ee.gh) and dev (watchmedo auto-restart over the api source dirs). Each service reuses its sibling's env_file so COMPOSIO_WEBHOOK_SECRET flows in, and gets a /proc/1/cmdline healthcheck on entrypoints.worker_triggers. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
The lane below this one adds a
worker_triggersprocess that drains thequeues:triggersRedis Stream and invokes bound workflows. None of the compose stacks launch it yet, so on a real deployment trigger events would enqueue and sit there with nothing consuming them.Changes
Adds a
worker-triggersservice to every OSS and EE compose file, mirroring the existingworker-webhooksservice in each file so the shape stays consistent per environment:gh,gh.local,gh.ssl: the newrelic array command (newrelic-admin run-program python -m entrypoints.worker_triggers), exceptee.ghwhich uses the plainpython -m ...form like its webhook sibling.dev:watchmedo auto-restartover the api source dirs so edits toworker_triggers.pyreload without a rebuild (it reuses the already-built dev api image).Each new service reuses its sibling's
env_file, soCOMPOSIO_WEBHOOK_SECRETand the rest of the api config flow in with no extra wiring. Each gets a/proc/1/cmdlinehealthcheck assertingentrypoints.worker_triggersis the running process.The matching SaaS production compose lives in the separate
agenta_cloudrepo and is handled there.Tests / notes
worker-triggersservice.