Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(spi): Change unsupported class types in RetryConfig
It was discovered whilst trying a fix for another issue and refactoring the repository and moving spi classes to runtime. In runtime the Quarkus annotation processor is applied. And it was failing because of this incorrect configuration interface. This interface was written using the fields of the `org.eclipse.microprofile.faulttolerance.Retry` annotation. And one can set `Class` object as type of fields of annotation. It is however not supported by `microprofile-config`. This will have no effect as such, as those configuration entries are directly injected as configuration entries linked to the retryable method of `io.quarkiverse.kafkastreamsprocessor.impl.decorator.processor.RetryDecoratorDelegate`.
- Loading branch information