-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support for additional properties #29
Comments
Hi @Flaxoos, is this not developed yet? |
Hi @diegopatinor unfortunately not yet, im busy with other tasks on another project of mine. Would you like to take this on? It's probably pretty straightforward and just a matter of extending the configuration classes |
@diegopatinor this has been addressed in v2.1.0 https://github.com/Flaxoos/extra-ktor-plugins/releases/tag/v2.1.0, you can now do for example: install(Kafka) {
...
consumer {
additional {
ANY_PROPERTY_STRING("some value")
}
}
commonSsl {
broker {
protocol = "TLSv1.2"
endpointIdentificationAlgorithm = ""
trustStore {
location = "path_to_file"
password ="password"
}
keyStore {
location = "path_to_file"
password ="password"
}
keyPassword = PASSWORD
}
schemaRegistry {
protocol = "TLSv1.2"
endpointIdentificationAlgorithm = ""
trustStore {
location = "path_to_file"
password ="password"
}
keyStore {
location = "path_to_file"
password ="password"
}
keyPassword = PASSWORD
}
}
} |
Closing as fixed |
The plugin should also allow configuration of additional properties, such as SASL, SSL, and Security.
see #26
The text was updated successfully, but these errors were encountered: