Skip to content

Commit

Permalink
Merge pull request quarkusio#41106 from yrodiere/stateless-session-re…
Browse files Browse the repository at this point in the history
…fresh-fetch

Delegate to the correct method in TransactionScopedStatelessSession#fetch
  • Loading branch information
yrodiere authored Jun 11, 2024
2 parents c296521 + 7fb0897 commit 1598027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public void refresh(String s, Object o, LockMode lockMode) {
public void fetch(Object o) {
checkBlocking();
try (SessionResult emr = acquireSession()) {
emr.statelessSession.refresh(o);
emr.statelessSession.fetch(o);
}
}

Expand Down

0 comments on commit 1598027

Please sign in to comment.