Les Jones
12/19/2022, 11:45 PMexposed-spring-boot-starter? I was able to get a test case working by manually creating a connection per https://github.com/JetBrains/Exposed/wiki/Transactions#using-nested-transactions but we’re using https://github.com/JetBrains/Exposed/blob/master/exposed-spring-boot-starter/README.md and I don’t see a hook for enabling nested transactions.Emil Kantis
12/20/2022, 5:51 AMDatabaseConfig with useNestedTransactions set to true?Les Jones
12/20/2022, 7:44 AM@ConditionalOnMissingBean(DatabaseConfig::class) in the autoconfig source code a couple hours later and doing exactly what you propose worked, thank you!Emil Kantis
12/21/2022, 11:07 PM