We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a4703 commit 36f74e9Copy full SHA for 36f74e9
backend/data/src/main/kotlin/io/tolgee/util/transactionUtil.kt
@@ -7,7 +7,6 @@ import org.springframework.transaction.support.TransactionTemplate
7
fun <T> executeInNewTransaction(transactionManager: PlatformTransactionManager, fn: () -> T): T {
8
val tt = TransactionTemplate(transactionManager)
9
tt.propagationBehavior = TransactionDefinition.PROPAGATION_REQUIRES_NEW
10
- tt.isolationLevel = TransactionDefinition.ISOLATION_SERIALIZABLE
11
12
return tt.execute {
13
fn()
0 commit comments