-
Notifications
You must be signed in to change notification settings - Fork 41
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
feat: dynamic header capability for http post-processor. #134
Merged
prakharmathur82
merged 8 commits into
raystack:feat/dynamic-header-capability-http-post-processor
from
mayankrai09:main
Apr 25, 2022
Merged
feat: dynamic header capability for http post-processor. #134
prakharmathur82
merged 8 commits into
raystack:feat/dynamic-header-capability-http-post-processor
from
mayankrai09:main
Apr 25, 2022
Conversation
This file contains 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
can you raise this on a separate feature branch? that way I will be able to run our smoke tests on that branch without merging it in main
|
...rc/main/java/io/odpf/dagger/core/processors/external/http/request/HttpGetRequestHandler.java
Outdated
Show resolved
Hide resolved
...-core/src/test/java/io/odpf/dagger/core/processors/external/http/HttpAsyncConnectorTest.java
Show resolved
Hide resolved
...est/java/io/odpf/dagger/core/processors/external/http/request/HttpGetRequestHandlerTest.java
Show resolved
Hide resolved
...st/java/io/odpf/dagger/core/processors/external/http/request/HttpPostRequestHandlerTest.java
Outdated
Show resolved
Hide resolved
mayankrai09
changed the base branch from
main
to
feat/dynamic-header-capability-http-post-processor
April 25, 2022 05:34
dagger-core/src/main/java/io/odpf/dagger/core/processors/common/EndpointHandler.java
Show resolved
Hide resolved
dagger-core/src/main/java/io/odpf/dagger/core/processors/common/EndpointHandler.java
Outdated
Show resolved
Hide resolved
dagger-core/src/main/java/io/odpf/dagger/core/processors/external/http/HttpSourceConfig.java
Outdated
Show resolved
Hide resolved
dagger-core/src/main/java/io/odpf/dagger/core/utils/Constants.java
Outdated
Show resolved
Hide resolved
...st/java/io/odpf/dagger/core/processors/external/http/request/HttpPostRequestHandlerTest.java
Outdated
Show resolved
Hide resolved
prakharmathur82
merged commit Apr 25, 2022
8585473
into
raystack:feat/dynamic-header-capability-http-post-processor
prakharmathur82
added a commit
that referenced
this pull request
May 6, 2022
Co-authored-by: mayankrai09 <[email protected]>
Meghajit
added a commit
that referenced
this pull request
Jul 15, 2022
* feat: dynamic header capability for http post-processor. (#134) Co-authored-by: mayankrai09 <[email protected]> * feat: upgrade stencil client version (#141) * chore: bump up core dependencies version for stencil upgrade (#151) * feat: add dependencies in build.gradle for parquet source and python udfs (#167) * doc: rfc for python udf (#129) * doc: rfc for python udf * docs: update rfc Co-authored-by: jesrypandawa <[email protected]> * feat:add support python udf (#172) * fix: fix docs for udf contribution (#175) Co-authored-by: Prakhar Mathur <[email protected]> Co-authored-by: mayankrai09 <[email protected]> Co-authored-by: Hari krishna <[email protected]> Co-authored-by: gauravsinghania <[email protected]> Co-authored-by: jesrypandawa <[email protected]> Co-authored-by: jesrypandawa <[email protected]>
Meghajit
added a commit
that referenced
this pull request
Jul 18, 2022
* feat: dynamic header capability for http post-processor. (#134) Co-authored-by: mayankrai09 <[email protected]> * feat: upgrade stencil client version (#141) * chore: bump up core dependencies version for stencil upgrade (#151) * feat: add dependencies in build.gradle for parquet source and python udfs (#167) * doc: rfc for python udf (#129) * doc: rfc for python udf * docs: update rfc Co-authored-by: jesrypandawa <[email protected]> * feat:add support python udf (#172) * fix: fix docs for udf contribution (#175) Co-authored-by: Prakhar Mathur <[email protected]> Co-authored-by: mayankrai09 <[email protected]> Co-authored-by: Hari krishna <[email protected]> Co-authored-by: gauravsinghania <[email protected]> Co-authored-by: jesrypandawa <[email protected]> Co-authored-by: jesrypandawa <[email protected]>
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.
Currently, in HTTP Post Processor, users can only specify static headers in the header config.
With this, we need to add the capability to support any header request pattern which can take values from input messages from the source.
Sample configuration:
{
"header_pattern": "{"Header_Key": "%s"}",
"header_variables": "transaction_id"
}