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
I have an application that use narayana-spring-boot with JPA and works fine with 3.0.0. After update it to 3.1.0 it begin to fail with MariaDB and DB2, although it runs with Postgres or H2.
I have been investigating the error and looks like the problem is on commit bbadc28.
My application has the following property:
narayana.transaction-manager-id=${random.uuid}
Then, like transaction-manager-id has more than 28 bytes, it's replaced with value generated with the new function shortenNodeIdentifier. But this cause that MariaDB and DB2 fail starting transaction (enlisting it). In case of MariaDB it throws a SQLSysntaxException.
The text was updated successfully, but these errors were encountered:
I have an application that use narayana-spring-boot with JPA and works fine with 3.0.0. After update it to 3.1.0 it begin to fail with MariaDB and DB2, although it runs with Postgres or H2.
I have been investigating the error and looks like the problem is on commit bbadc28.
My application has the following property:
narayana.transaction-manager-id=${random.uuid}
Then, like transaction-manager-id has more than 28 bytes, it's replaced with value generated with the new function
shortenNodeIdentifier
. But this cause that MariaDB and DB2 fail starting transaction (enlisting it). In case of MariaDB it throws a SQLSysntaxException.The text was updated successfully, but these errors were encountered: