-
Notifications
You must be signed in to change notification settings - Fork 50
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
Update processor SDK, add middleware #1742
Conversation
- apply processor middleware to builtin processors - use config.Config for configuration map - take into account middleware parameters in tests
pkg/plugin/processor/standalone/test/wasm_processors/specify_error/processor.go
Show resolved
Hide resolved
- update processor SDK - set SchemaService for builtin processors - add support for "time" in field.convert processor
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.
@lovromazgon Looks good. I left a bunch of comments (stopped in some point) to rename the parameter name m
to something such as c
now that the type was changed in the processor SDK. If you agree with that change, maybe it'd safer to search across the different builtin processors.
Description
This PR includes the following changes:
config.Config
as configuration map typeDepends on ConduitIO/conduit-processor-sdk#68.
Fixes #1707
Quick checks