devorgpl

Results 3 comments of devorgpl

For RDS (and all other postgres with required ssl) there is a workaround $ export NODE_TLS_REJECT_UNAUTHORIZED='0' $ code . or setup NODE_TLS_REJECT_UNAUTHORIZED='0' environment variable in any other way. It'll be...

Same error with "delete", OpenJDK 21 ``` quarkus-bom io.quarkus.platform 3.4.3 3.1.2 3.11.0 UTF-8 UTF-8 3.22.0 ``` Steps to reproduce: git clone https://github.com/quarkusio/quarkus-quickstarts && cd quarkus-quickstarts/hibernate-reactive-panache-quickstart add more samples in import.sql...

Exception is random. This workaround seems to work: ``` @Entity @Cacheable @NamedQueries({ @NamedQuery(name = "Fruit.deleteById", query = "delete from Fruit p where p.id = ?1") }) public class Fruit extends...