-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix IsDockerWorking class not using TestContainersStrategy #29201
Conversation
core/deployment/src/main/java/io/quarkus/deployment/DockerStatusProcessor.java
Outdated
Show resolved
Hide resolved
@@ -84,7 +84,7 @@ public Result get() { | |||
|
|||
Class<?> configurationClass = Thread.currentThread().getContextClassLoader() | |||
.loadClass("org.testcontainers.utility.TestcontainersConfiguration"); | |||
Object configurationInstance = configurationClass.getMethod("instance").invoke(null); | |||
Object configurationInstance = configurationClass.getMethod("getInstance").invoke(null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch!
Signed-off-by: Jorge Solórzano <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
What about also |
It does? Are you sure? |
Yes, I'm sure, it was introduced in |
Okay, thanks for checking |
Failing Jobs - Building eac0e5e
Full information is available in the Build summary check run. Failures⚙️ JVM Tests - JDK 11 #- Failing: extensions/micrometer/deployment
! Skipped: extensions/micrometer-registry-prometheus/deployment extensions/quartz/deployment extensions/scheduler/deployment and 21 more 📦 extensions/micrometer/deployment✖
⚙️ JVM Tests - JDK 11 Windows #- Failing: extensions/grpc/runtime
! Skipped: extensions/grpc/deployment extensions/micrometer-registry-prometheus/deployment extensions/micrometer-registry-prometheus/runtime and 43 more 📦 extensions/grpc/runtime✖
|
Fixes #29188