Fix the schema that is sent with the data sothe jsonConverter can be used with the data#58
Open
aindriu-aiven wants to merge 4 commits intomainfrom
Open
Fix the schema that is sent with the data sothe jsonConverter can be used with the data#58aindriu-aiven wants to merge 4 commits intomainfrom
aindriu-aiven wants to merge 4 commits intomainfrom
Conversation
f4f67b8 to
114f988
Compare
aindriu-aiven
commented
Apr 21, 2026
| } | ||
|
|
||
| return new SchemaAndValue(valueSchema, output); | ||
| return new SchemaAndValue(valueSchema.build(), output); |
Collaborator
Author
There was a problem hiding this comment.
This is actually incorrect still fixing.
70fa536 to
8d6f865
Compare
…used with the data Signed-off-by: Aindriu Lavelle <aindriu.lavelle@aiven.io>
Signed-off-by: Aindriu Lavelle <aindriu.lavelle@aiven.io>
Signed-off-by: Aindriu Lavelle <aindriu.lavelle@aiven.io>
13395d7 to
efdd2d4
Compare
Signed-off-by: Aindriu Lavelle <aindriu.lavelle@aiven.io>
| ConnectorConfig.configDef(); | ||
| Map<String, String> props = new HashMap<>(); | ||
| props.put("value.converter", "org.apache.kafka.connect.storage.StringConverter"); | ||
| CommonConfigFragment.Setter test = CommonConfigFragment.setter(props); |
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.
About this change - What it does
Resolves: #xxxxx
Why this way