Marc Marcet
Marc Marcet
Definately this should be a must.
Hi @dstepanov Could you clarify if this affects normal `@JdbcRepository` repositories? I'm trying to use `@Transactional` on a service with save() calls to a `CoroutineCrudRepository` but transactions don't seem to...
Would you mind taking a very quick look to this minimal example? As it is now, the `companyRepository.count()`keeps increasing on every POST to /companies. However, if you remove the `supend`...
I've been debugging a little bit and it seems that at some point there is a call to `TransactionSynchronizationManager.getSynchronizations()` that ends up throwing a `IllegalStateException("Transaction synchronization is not active")` which...
@piotrbrzuska solution worked for me. Basically, I did the following: server.ts: ``` export function app(locale) { const server = express(); server.engine( 'html', ngExpressEngine({ bootstrap: AppServerModule, }) ); const distPath =...
I've been playing with lingui and the app router for the last couple of days and it seems that if you need to translations in both, pages and layouts, you...
@thekip not sure if it's going to be helpful, but this is what i´m playing with: https://github.com/thekip/nextjs-lingui-rsc-poc/pull/2/files As is it right now, the app crashes when navigating from parent to...
> We're using an SSM parameter for this. The resource sets up an initial value (eg. latest) when created, but value changes to this parameter are then ignored. Our CICD...