Having an issue integrating the AWS Glue schema registry with quarkus reactive messaging. I have a property defined as:
mp.messaging.outgoing.eligibility.schemaName=<some schema name>
Notice the camelcase in schemaName. The Glue schema registry is looking for a value for schemaName but from the log output quarkus seems to be putting that property out in all lower case as schemaname so the default approach for adding additional kafka properties doesn't work.
Is there a way to maintain the camel casing in the properties file or another approach to adding kafka properties to an application.
Thanks
You need to put the property segment into quotes to preserve the original case :