You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Atomikos Spring Integration documentation specifies that the UserTransactionServiceImp class should be initialized with shutdownForce as the destroy method:
Issue:
Using shutdownWait can cause issues during the shutdown phase, especially when working with Oracle databases, leading to ORA-17008 exceptions (closed connection).
Expected Behavior:
The destroy method should align with the documentation, which uses shutdownForce, to prevent connection closure issues.
Proposed Solution:
Replace the destroy method shutdownWait with shutdownForce in the AtomikosAutoConfiguration class:
Bug Description:
The Atomikos Spring Integration documentation specifies that the
UserTransactionServiceImp
class should be initialized withshutdownForce
as the destroy method:However, in the
AtomikosAutoConfiguration
class, the destroy method is incorrectly set toshutdownWait
instead ofshutdownForce
:Issue:
Using
shutdownWait
can cause issues during the shutdown phase, especially when working with Oracle databases, leading toORA-17008
exceptions (closed connection).Expected Behavior:
The destroy method should align with the documentation, which uses
shutdownForce
, to prevent connection closure issues.Proposed Solution:
Replace the destroy method
shutdownWait
withshutdownForce
in theAtomikosAutoConfiguration
class:The text was updated successfully, but these errors were encountered: