Ian Springer
Ian Springer
I see the issue with 7.3.0. I see it both when running the test via Maven/Failsafe and when running it via IntelliJ. I am using Java 11.
Any updates on this issue? It's preventing my team's project from upgrading to testng 7.x, which contains fixes for other bugs that are affecting us. Thanks!
See also #27, which I think would also cover this issue.
Hi @unverbraucht, I think the following skip implementation (not tested!) will fix the issue you are seeing: ``` // NOTE: We cannot simply delegate to super.skip, since we need to...
Has this been fixed?
Hi @alina-yur, same issue: ``` $ curl -LOs https://github.com/oracle/graaljs/releases/download/vm-22.3.3/js-installable-svm-java11-linux-amd64-22.3.3.jar $ sudo ${JAVA_HOME}/bin/gu install --file js-installable-svm-java11-linux-amd64-22.3.3.jar Processing Component archive: /home/ec2-user/js-installable-svm-java11-linux-amd64-22.3.3.jar Installing new component: Graal.js (org.graalvm.js, version 22.3.3) Installation of Graal.js failed:...
Hi @ansalond, your test case worked for me. The js-installable jar I was originally using was identical to yours, so I figured it must be something different about the GraalVM...
I'm also seeing the log config being ignored and all logging going to stdout after upgrading to verdaccio 5.29.2. My environment: ``` $ uname -a Linux e1npm1 4.14.171-105.231.amzn1.x86_64 #1 SMP...
I was able to get my H2O app running on Java 21 with: ``` System.setProperty("sys.ai.h2o.debug.noJavaVersionCheck", "true") ``` Are there any known issues with Java 21, or have you just not...
+1 for this feature. Here is my use case for it. For security reasons, I would like to mark sensitive fields (e.g. passwords) in various domain objects with @JsonView(Sensitive.class), and...