Jörg Hohwiller

Results 270 comments of Jörg Hohwiller

I also face issues with RetireJS download due to TLS issues: ``` [ERROR] Failed to execute goal org.owasp:dependency-check-maven:7.1.0:check (default-cli) on project devon4j: Fatal exception(s) analyzing devon4j: One or more exceptions...

I am facing the same problem in my OSS project that I migrated to JPMS entirely. The problem ist that there seems no way to make it work with spring-boot...

> Disabling or changing the LoggingSystem that Spring Boot uses is possible and documented in the reference guide. Thanks for the hint. Indeed it works when I launch my test...

Here is the link to the line causing the NPE: https://github.com/orientechnologies/orientdb/blob/bcef56923b1b1a3017d6670761b148a6a6d92004/core/src/main/java/com/orientechnologies/orient/core/record/impl/ODocument.java#L786

This seems to be related to the fact that I set `min` and `max` in the link property to `1`. Is that invalid?

I updated my `Address` vertex and removed `min` and `max` values from existing `Country` property. After reloading the schema of `Address` the value of `min` in property `Country` was displayed...

+1 IMHO you would only need to make `DbSupportFactory.createDbSupport` less static and hardwired but a little bit more pluggable. Maybe you could simply convert the static method into an instance...

BTW: The advantage of rewriting flyway would be that it could be completely decoupled from JDBC and can also work for OrientDBs native java document API. However, if flyway would...

Another tricky part is that for some strange reason OrientDB does not support multiple SQL statements separated by semicolon (except in batch mode of console). To make flyway work with...

thanks @luigidellaquila for the feedback. That is good to know. But as Flyway ist completely wired to JDBC we would need this in the orient jdbc driver. According to my...