-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct schema comparison when posting to subject
After refactoring schema storage to use non-parsed versions an error was introduced to schema comparison when posting to subject. The original Avro schema string can differ from the parsed schema, e.g. names are not necessary for comparison. Example below: Stored schema string: {"type":"int","name":"example_name"} -> parsed schema: "int" New schema posted to subject: {"type":"int"} -> parsed new schema: "int"
- Loading branch information
1 parent
27f10b9
commit 864875b
Showing
2 changed files
with
42 additions
and
4 deletions.
There are no files selected for viewing
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
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