Maido
Maido
Not sure if it would break anything but currently it wouldn't do much because openSLES driver does not have `AllowsArbitraryDeviceNames` set to true.
Looks better, but I haven't found a way to pass the device information to openSLES so it would actually try to use the chosen device... Also a separate issue maybe:...
One solution would be to make the ThreadFactory implementation on the dispatcher configurable, maybe as a static field on the Dispatcher. Passing it in would be an option as well...
So this example is actually incorrect and I removed the relevant part when trying to anonymise the query. What actually happens is that when you do `SELECT ... FOR UPDATE`...
Found the relevant part of the Postgres code https://doxygen.postgresql.org/parsenodes_8h_source.html#l00100 ```c /* Currently, SELECT ... FOR [KEY] UPDATE/SHARE requires UPDATE privileges */ #define ACL_SELECT_FOR_UPDATE ACL_UPDATE ```
Here's a proof of concept PR to check if it is possible https://github.com/pgaudit/pgaudit/pull/219
@danpalmer makes sense in general, but in my specific case we use AWS RDS where you can't control the logging much, you either use CloudWatch or nothing and when it...
I didn't have any issues following the guide, but I was struggling to understand what to do next. Luckily a bit of googling got me to the `mkinitcpio-tpm2-encrypt` repo and...
Ah ok, I couldn't figure out a better way to use spring-modulith-events without other parts of modulith project.
Actual modules I added were ``` implementation 'org.springframework.modulith:spring-modulith-events-core' implementation 'org.springframework.modulith:spring-modulith-events-jackson' implementation 'org.springframework.modulith:spring-modulith-events-jdbc' ``` My goal is to use the persistent events logic in our modular monolith project without using full...