Aurora Lahtela

Results 337 comments of Aurora Lahtela

The server row somehow disappeared from the database 🤔 - This can happen if /plan db clear is run or someone goes in manually and deletes it or changes the...

You can currently see this from Sessions tab where active sessions have fully colored background while sessions that have ended have just an outline

What is the transaction isolation level in your database? Here's how it's done (which one of these works depends on database in use) ```sql SELECT @@TX_ISOLATION; SELECT @@transaction_ISOLATION; SELECT @@global.tx_isolation;...

I think it might need to be READ_COMMITED to prevent the error, though this might just be a concurrency thing that needs to be handled by the code The error...

Adding `&sessionVariables=transaction_isolation='READ-COMMITTED'` to the end of `Database.MySQL.Launch_options` should temporarily solve this

Okay so it does find you but doesn't count because the dates are outside sum range, I see. This is a bit difficult problem sometimes