RomainWilbert

Results 10 issues of RomainWilbert

Hi Nicolas ! When I try to set a value using a POST method with string content body and a ~700KB base64 encoded message, server respond with following error ```...

I work with Quarkus so I created a module to make transaction-outbox work with cdi-api & transaction-api. Should work with other implentations. I have made basic tests, feel free to...

Implemented with Oracle-XE (gvenzl/oracle-xe:18-slim).

I added 2 methods in TransactionOutbox : - unblockAll : unblock all blocked entries for retry - getBlockedEntries : returns list of blocked entries This could be usefull to create...

Hello, There is a hook for blocked entries through the listener, and also TransactionOutbox.unblock(entryId) method. Have you considered to add : - a service that unblocks all blocked entries -...

If I try to parse "last tuesday" and today is wednesday April 18th, the result is April 10th instead of April 17th. I tried to play with forwardDate option but...

Hi ! When i launch poppy-services --snap --vrep --no-browser poppy-torso 3.0.0 with Python 3.9 on Windows, i get the following error : `Attempt 1 to start the robot... 'charmap' codec...

I want to route request regarding its size. I tried to use HeaderRoutePredicateFactory and Content-length header with a regex : this works but when I look at the requests I...

waiting-for-triage

I would like to redirect requests based on some information contained in the body for POST requests with XML content. CacheRequestBodyFilter is executed after Predicates so ServerWebExchangeUtils.CACHED_REQUEST_BODY_ATTR is null at...

waiting-for-triage

Hi ! Quarkus version : 3.5.0 smallrye-reactive-messaging : 4.10.1 I created the following consumer : ` @Incoming("topicIn") @Outgoing("topicOut") public Multi consumeIncoming(Message message) { return service.doSomething(message).onFailure().invoke(e -> log.error( "error, sould be...