Eduardo Velasques

Results 12 comments of Eduardo Velasques

The same error here with me, but as @hpoettker said before, just add this before connecting: `ssh.addHostKeyVerifier(new PromiscuousVerifier());` It was enough to solve!

The same error here with me, but found this: https://github.com/hierynomus/sshj/issues/635 Then I've added this before connecting: `ssh.addHostKeyVerifier(new PromiscuousVerifier());` It was enough to solve!

The support to Java 22 urges! ``` Caused by: java.lang.UnsupportedOperationException: Unsupported version number [66.0] (maximum 65.65535, Java null) ``` Please as soon as possible! We need 🚀 Thank you 🙌

@lordarnoud to bypass this issue and not delay the releases, what I made was compile with Java 21 and then flawless run with Java 22. It is not how we...

Here is an example: https://github.com/netuno-org/cluar/tree/main/website Then there is a StyleX basic implementation here: https://github.com/netuno-org/cluar/tree/main/website/src/base/Cookies > The LESS file is unused. With this, if you try to use variables, the error...

I'm facing constant data loss with these URL flags and after upgrading the Netuno Platform dependency from v2.2.224 to v2.3.232: MODE=PostgreSQL;CASE_INSENSITIVE_IDENTIFIERS=TRUE;DATABASE_TO_LOWER=TRUE;DEFAULT_NULL_ORDERING=HIGH;DB_CLOSE_ON_EXIT=TRUE;FILE_LOCK=NO; This behavior can be verified in Netuno Platform (netuno.org),...

Thank you @katzyn, but unfortunately, it did not work. But I still need to try using FILE or SOCKET. I don't have much hope because the only change was the...

@andreitokar yes, in my case data loss occurs even with default, with no FILE_LOCK defined in the JDBC URL. I tried to create a small example without success. The behavior...

After many tests, the solution for my data loss is to stop using the org.h2.jdbcx.JdbcDataSource and now I am using the HikariCP instead. Using the latest H2Database v2.3.232 with HikariCP...

> I might have found an issue with database compaction in [#4247](https://github.com/h2database/h2database/issues/4247) that can explain these losses/rollbacks. During my tests, using `AUTO_COMPACT_FILL_RATE=0` removed the corruptions completely (at the cost of...