Amit Dev

Results 10 comments of Amit Dev

Is there any plan to support this by updating the docker file etc? Currently the docker file refers to old unsupported images. Looks like https://github.com/confluentinc/cp-docker-images are the new images.

@imanzano did you create the extension (`create extension bottledwater;`) in the same database (dbname: postgres)? The error seems to be because the extension is missing.

The problems seems to be that if https://github.com/cashapp/tempest/blob/c0fe0a9fbfdcb08e1edd1dc62ade4e847d4842cb/tempest2/src/main/kotlin/app/cash/tempest2/internal/DynamoDbQueryable.kt#L113 throws an exception it just seems to get stuck.

It seems to be the number of threads waiting to get a connection from the pool (https://github.com/brettwooldridge/HikariCP/blob/dev/src/main/java/com/zaxxer/hikari/util/ConcurrentBag.java#L325). Also mentioned in the [wiki](https://github.com/brettwooldridge/HikariCP/wiki/Dropwizard-Metrics#pool-namepoolpendingconnections).

Serialization/deserialization is not supported, but I'll leave this ticket for sometime. Maybe someone (or I) might fix it later.

No, it is not possible now.

Updated to 6.25. Adding support to choose PMD version is tricky and I don't have time to look at it now. Happy to accept PRs though :)

No, its not there now.

The icon next to violation shows the issue severity. For eg: try the following snippet which has higher priority: ``` java String x = "foo"; if (x.equals(null)) { doSomething(); }...