We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
uri
//
Currently, Kaoto honors the syntax field of components, and some components do not use // as a delimiter while still supporting it.
syntax
Example of this is are ftp and sftp components:
ftp
sftp
"syntax": "ftp:host:port\/directoryName",
Notice how // it's not included in the syntax but still a user could write the URI as:
uri: ftp://myHost:myPort/dirName # (not supported by Kaoto) # vs uri: ftp:myHost:myPort/dirName # (supported by Kaoto)
The goal is to have support for uris using // delimiter, even if not specified in the syntax field.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please describe the feature that you want to propose
Currently, Kaoto honors the
syntax
field of components, and some components do not use//
as a delimiter while still supporting it.Example of this is are
ftp
andsftp
components:Notice how
//
it's not included in the syntax but still a user could write the URI as:The goal is to have support for
uri
s using//
delimiter, even if not specified in thesyntax
field.The text was updated successfully, but these errors were encountered: