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
If server session is not null, String formatting in MongoTransactionManager.debugString() fails and therefore the output always contains "error = d != java.lang.Boolean".
The root cause is on line String.format("closed = %d, ", session.getServerSession().isClosed()) as boolean is not accepted by %d.
The text was updated successfully, but these errors were encountered:
If server session is not null, String formatting in
MongoTransactionManager.debugString()
fails and therefore the output always contains "error = d != java.lang.Boolean".The root cause is on line
String.format("closed = %d, ", session.getServerSession().isClosed())
as boolean is not accepted by%d
.The text was updated successfully, but these errors were encountered: