dvoet
dvoet
Hi Nils, My first reaction is that this actually hinders readability by hiding the real type. It is just one more thing to keep in my head. I would rather...
I also suspect using `IsolationLevel.Default` inherits the isolation level from the last transaction used by a connection in a pool. https://github.com/scalikejdbc/scalikejdbc/blob/master/scalikejdbc-core/src/main/scala/scalikejdbc/Tx.scala#L27
It is beneficial to use read only transactions when other transactions are serializable so the db can know they can’t cause a serialization failure. On Thu, Dec 17, 2020 at...
Sure, I am not blocked by this. More importantly though is that the way isolation level is handled makes stateful changes to database connections and when pools are used there...
@cdvoisin I think I addressed your comments. Please take another look. Thanks.
Are there going to be updates to the embedded access token (i.e. visa) polling section? I believe the RAS implementation has departed a bit from the spec in this respect...
Access tokens are short lived, usually 1 hour tops, so storing them does not make a ton of sense. Usually the quick and dirty thing we do is run `gcloud...