Peter

Results 4 issues of Peter

I've noticed this problem happening when two `newSuspendedTransactions` are competing on the same table from different CoroutineScopes, when `autoCommit` in the connection pool (Hikari) is set to `false`: ``` org.jetbrains.exposed.exceptions.ExposedSQLException:...

waiting for reply

I believe this isn't fully supported yet but attempting to use r2dbc DSL with repositories, pretty close but I believe it wants the R2dbcEntityTemplate bean named "r2dbcEntityTemplate" explicitly: https://github.com/spring-projects/spring-data-r2dbc/blob/1.2.x/src/main/java/org/springframework/data/r2dbc/repository/config/EnableR2dbcRepositories.java#L139 ```...

type: bug

``` * What went wrong: Execution failed for task ':release'. > org.eclipse.jgit.api.errors.TransportException: [email protected]/xx.git: invalid privatekey: [B@52771620 ``` looks like the issue might be related to: https://bugs.eclipse.org/bugs/show_bug.cgi?id=520927 - I'm using ed25519...

`SemVer(1, 2, 3).copy(preRelease = "")` will throw an Exception.. seems a bit unreasonable? how about `if (!preRelease.isNullOrBlank()) require(preRelease.matches(Regex("""[\dA-z\-]+(?:\.[\dA-z\-]+)*"""))) { "Pre-release version is not valid" }`