Fixed
Details
Assignee
Waldemar KłaczyńskiWaldemar KłaczyńskiReporter
Waldemar KłaczyńskiWaldemar KłaczyńskiComponents
Fix versions
Priority
Minor
Details
Details
Assignee
Waldemar Kłaczyński
Waldemar KłaczyńskiReporter
Waldemar Kłaczyński
Waldemar KłaczyńskiComponents
Fix versions
Priority
Created April 20, 2021 at 10:32 AM
Updated September 10, 2021 at 7:24 AM
Resolved April 20, 2021 at 2:36 PM
Session activity information is missing. This is very important if the previously opened session was opened by another code fragment in the same transaction. Elsewhere, the same session is accessed without knowing if a session shutdown was programmatically performed before.
The fix would be to add a "boolean active()" field to the "SearchSession" api.
package org.hibernate.search.mapper.javabean.session; public interface SearchSession extends AutoCloseable { /**Get the active session state . *@return A active session state. */ boolean active(); }