-
Notifications
You must be signed in to change notification settings - Fork 56
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
Schema fixes + avoiding duplicate reply begin on mqtt-kafka subscribe stream #872
Merged
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
56dce16
Fix qvault on asyncapi composite binding
bmaidics abd1c3f
Review
bmaidics 4ba7ec8
remove pcap
bmaidics 90a6ab8
Reference options in TLS
bmaidics 9855486
Fix path
bmaidics c808627
commit
bmaidics 7ccffe8
fixes
bmaidics 9c61d86
Merge remote-tracking branch 'upstream/develop' into schema_fixes
bmaidics dc8decb
Fix tests
bmaidics 8c098c9
Fix dependency
bmaidics 23c1e9b
Revert mqtt-kafka schema changes
bmaidics File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,34 +43,7 @@ | |
}, | ||
"topics": | ||
{ | ||
"title": "Topics", | ||
"type": "object", | ||
"properties": | ||
{ | ||
"sessions": | ||
{ | ||
"title": "Kafka Sessions Topic", | ||
"type": "string" | ||
}, | ||
"messages": | ||
{ | ||
"title": "Kafka Messages Topic", | ||
"type": "string" | ||
}, | ||
"retained": | ||
{ | ||
"title": "Kafka Retained Topic", | ||
"type": "string" | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"required": | ||
[ | ||
"sessions", | ||
"retained", | ||
"messages" | ||
], | ||
"additionalProperties": false | ||
"$ref": "#/$defs/options/binding/mqtt-kafka/topics" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See feedback on asyncapi options for |
||
}, | ||
"clients": | ||
{ | ||
|
@@ -188,5 +161,43 @@ | |
] | ||
} | ||
} | ||
}, | ||
{ | ||
"op": "add", | ||
"path": "/$defs/options/binding/mqtt-kafka", | ||
"value": | ||
{ | ||
"topics": | ||
{ | ||
"title": "Topics", | ||
"type": "object", | ||
"properties": | ||
{ | ||
"sessions": | ||
{ | ||
"title": "Kafka Sessions Topic", | ||
"type": "string" | ||
}, | ||
"messages": | ||
{ | ||
"title": "Kafka Messages Topic", | ||
"type": "string" | ||
}, | ||
"retained": | ||
{ | ||
"title": "Kafka Retained Topic", | ||
"type": "string" | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"required": | ||
[ | ||
"sessions", | ||
"retained", | ||
"messages" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} | ||
] |
Oops, something went wrong.
Oops, something went wrong.
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.
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.
I'm not sure about this one, since we're deliberately using
channels
asyncapi concept here, whereas mqtt-kafka deals with kafka-specifictopics
instead, so unifying this config causes asyncapi to switch totopics
instead.