Description
I am trying to use the CamelHttpsSinkConnector to fulfill that sync the Kafka events to the remote Endpoint.
There are some properties in the document https://camel.apache.org/camel-kafka-connector/4.0.x/user-guide/basic-configuration.html
camel.error.handler
camel.error.handler.max.redeliveries
camel.error.handler.redelivery.delay
I want to use these properties to implement the blocking retry that if the http request encounter exception will do redelivery and redelivery times are based on camel.error.handler.max.redeliveries value.
But the verification result not meeting our expectation, when the Http request encounter 400 error will not do redelivery.
My question is that whether this function is available for CamelHttpsSinkConnector or not?
Thanks