FelipeEmerim

Results 17 comments of FelipeEmerim

Could be related, but I don't think it is a duplicate. In that issue the OP is not using a native query, thus spring generates the count query for him....

Merging [this PR](https://github.com/keycloak/keycloak-nodejs-connect/pull/274) does the proposed fix and closes this issue.

We managed to make it work with the following code: ```typescript export function shouldRestart(error: Error): boolean { const isNonRetriableError = error instanceof KafkaJSNonRetriableError; const isNumberOfRetriesExceeded = error instanceof KafkaJSNumberOfRetriesExceeded; return...

Hi, We made that shouldRestart function so that we could restart the consumer on non-retriable errors. Since we have a hybrid application (http + kafka + rabbitMQ) it is undesirable...

We could restart on `!restart`, I believe it would give us the same results. We've made the custom function because we wanted to restart on **specific** non-retriable errors. It is...

We tried to deploy the latest version and got this error: ``` Error: UPGRADE FAILED: error validating "": error validating data: ValidationError(HorizontalPodAutoscaler.spec): unknown field "behaviour" in io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec ``` These are...

@mloiseleur Worked like a charm! Thank you! As for this issue, I don't see the warnings about the deprecated autoscaling API anymore. (k8s 1.23). I believe it is working correctly.