We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49f51b commit 71c7436Copy full SHA for 71c7436
hibernate-reactive-core/src/test/java/org/hibernate/reactive/MultipleContextTest.java
@@ -10,6 +10,7 @@
10
import javax.persistence.Entity;
11
import javax.persistence.Id;
12
13
+import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
14
import org.hibernate.cfg.Configuration;
15
import org.hibernate.reactive.mutiny.Mutiny;
16
import org.hibernate.reactive.stage.Stage;
@@ -54,6 +55,11 @@ protected Configuration constructConfiguration() {
54
55
return configuration;
56
}
57
58
+ @Override
59
+ protected void addServices(StandardServiceRegistryBuilder builder) {
60
+ vertxContextRule.vertx().getOrCreateContext();
61
+ }
62
+
63
@Test
64
@Ignore
65
// I don't know why but this test fails on CI because no exception is thrown
0 commit comments