feat(agent): add workflow executor proxy routes#293
Open
matthv wants to merge 2 commits into
Open
Conversation
3 new issues
|
| "#{EXECUTOR_PREFIX}/#{run_id}#{suffix}" | ||
| end | ||
|
|
||
| def forward(method, base_url, path, args) |
| next if value.is_a?(Hash) || value.is_a?(Array) # 'data' body, etc. | ||
|
|
||
| acc[key.to_s] = value | ||
| end |
| FORWARDED_HEADERS.each_with_object({}) do |name, acc| | ||
| value = headers[name] || headers[name.downcase] || headers["HTTP_#{name.upcase}"] | ||
| acc[name] = value if value && !value.to_s.empty? | ||
| end |
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.
Add workflow executor proxy routes to forward workflow execution requests
WorkflowExecutorProxyroute class that registers two endpoints (GET /_internal/workflow-executions/:run_idandPOST /_internal/workflow-executions/:run_id/trigger) whenworkflow_executor_urlis configured.AuthorizationandCookieheaders, filtered query params, and JSON:API-aware body extraction.workflow_executor_urlas a new configuration option (defaultnil) in forest_admin_rails.rb.ConnectionFailedandTimeoutErrorare translated to503 ServiceUnavailableErrorinstead of leaking raw exceptions.workflow_executor_urlis set; if unset, no routes are exposed.Macroscope summarized 0be6d8d.