Davide D'Alto

Results 288 comments of Davide D'Alto

Yes, this is the problem @Sanne was talking about. When I run the test I have the following exception: ``` 021-02-01 17:25:34,176 ERROR [org.jbo.res.res.i18n] (executor-thread-5) RESTEASY002020: Unhandled asynchronous exception, sending...

This will work if you wrap everything in a transaction: ``` public Uni getPage() { return Panache.withTransaction(() -> { var query = this.findAll(); var list = query.page( Page.of( 1, 10...

> what operations can I do on the reactive session without a transaction? I don't think in this case the problem is the lack of a transaction, I think the...

> So perhaps @DavideD deliberately changed that code when he did the fork .... it's the only explanation I can think of .... I don't remember doing anything specific to...

> Hi, I have created a new pull request related to https://hibernate.atlassian.net/browse/OGM-571. This is it #1111. It does not solve the initial issue of lazy start of the mongodb datastore...

Sorry, I can't remember. Why did you use branch 5.3 instead of master?

I have this exact issue trying to use the plugin on the Hibernate Reactive project: https://github.com/DavideD/hibernate-reactive/tree/687-release I've added the [nexusPublishing](https://github.com/DavideD/hibernate-reactive/blob/687-release/publish.gradle#L119) and I also have a [publishing](https://github.com/DavideD/hibernate-reactive/blob/687-release/publish.gradle#L62). When I try to...

Nevermind, it seems I've solved this issue and found where I can add it to my project.

I've put it in the root of the project. You can see it here: https://github.com/hibernate/hibernate-reactive/blob/021cd601f6e0d25bc552446f1f4c0c102a153b5e/build.gradle#L99 And I've defined the version and group in the [root](https://github.com/hibernate/hibernate-reactive/blob/main/build.gradle#L44) and in the [subprojects](https://github.com/hibernate/hibernate-reactive/blob/021cd601f6e0d25bc552446f1f4c0c102a153b5e/build.gradle#L117).

See this example: https://github.com/kit-data-manager/nexus-publish-example