Stéphane Épardaud

Results 147 issues of Stéphane Épardaud

Once a transaction has been created with `Connection.begin` it will be associated with the connection, so its implementation keeps it in a field. It can be useful to add an...

enhancement

Hi, I'm trying a suspendable Iterable and I can't get it to work in enhanced for loops, probably due to the instrumentation not detecting that the Iterator has `@Suspendable` in...

This implements support for suspendable iterators #285 Let me know if there's anything you'd want to be done differently?

For debug purposes, it would be nice to add a mode to Mutiny which attaches stack traces to exceptions, to record where we created the `Uni`, rather than when it...

enhancement

I see my rx API has methods not marked as deprecated which wrap deprecated methods, so as such I never know that I'm using deprecated APIs. Those annotations/javadoc tags should...

So, if we add this APT processor in the classpath, we pull in all our deps in the user's classpath, including Groovy and our specific version of Hibernate. In Maven,...

### Describe the bug In my extension, I created a static resource with: ```java @BuildStep public void processModel(BuildProducer output, BuildProducer staticResources) { String path = "/routes.js"; output.produce(new GeneratedResourceBuildItem("META-INF/resources" + path,...

kind/bug
area/vertx
area/bootstrap

Fixes #22205 - Made `@BeanParam` and `@MultipartForm` optional (any container class with fields using the `@Rest*` annotations or their JAX-RS equivalents will be auto-detected as a bean param - Merged...

area/documentation
release/breaking-change
area/resteasy-reactive

I don't think the spec is consistent with async programming or proper usage of `CompletionStage` when it comes to SSE handling. For example, this documentation of `SseEventSink`: ```java /** *...