Aditya Prasad
Aditya Prasad
…override ND4J dep on the old 20.0).
- Add shared memory support to client and server. - Make caching getKey async. - Add a speed test (that also demonstrates shared memory usage). Note that this breaks the...
https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/mysql_mysql_db_system The `channels/source` section has a param for `username` but not `password` (which exists in the console). I understand that it's not good practice to include passwords in my TF,...
akka.pattern.retry takes a param called `attempts`, but it tries `attempts+1` times. Simplified version of `RetrySupport.retry`: ``` if (maxAttempts - attempted > 0) { val result = tryAttempt() retry(attempt, maxAttempts, delayFunction,...
###### Which version and edition of Flyway are you using? 8.0.2, Community ed. ###### If this is not the latest version, can you reproduce the issue with the latest one...
I notice that ZIO [uses](https://github.com/zio/zio/blob/6362961efb3fe0af160b6b5e76b2a3014531825d/core/jvm/src/main/scala/zio/internal/PlatformSpecific.scala#L43) the deprecated `sun.misc.SignalHandler`: ``` final def addSignalHandler(signal: String, action: () => Unit)(implicit unsafe: zio.Unsafe): Unit = { import sun.misc.Signal import sun.misc.SignalHandler ``` I'm building a...
This is a fix for https://github.com/morintd/prismock/issues/1263 Models with composite primary keys had their match functionality broken in 1.35.
In [this commit](https://github.com/morintd/prismock/commit/ebcd75df28a58b5fc805a5d473b5117753b9bc01), I believe ``` const compositeIndex = current.model.uniqueIndexes.map((index) => index.name).includes(child) || current.model.primaryKey?.name === child || current.model.primaryKey?.fields.join('_'); ``` should be ``` const compositeIndex = current.model.uniqueIndexes.map((index) => index.name).includes(child) || current.model.primaryKey?.name...