Context
`app/src/test/resources/application.properties` contains a workaround for casehubio/qhorus#141:
```properties
%test.quarkus.datasource.qhorus.reactive=false
%test.quarkus.datasource.reactive=false
```
casehub-qhorus unconditionally activates `quarkus-hibernate-reactive-panache`, forcing all JDBC-only consumers to suppress the reactive pool in tests.
Action
Once casehubio/qhorus#141 ships, remove both properties. The fix gates the reactive extension behind classpath presence (PP-20260514-f41258) — no consumer-side suppression needed.
```bash
mvn verify -pl app -am # verify tests pass without the properties
```
Blocked by
casehubio/qhorus#141
Context
`app/src/test/resources/application.properties` contains a workaround for casehubio/qhorus#141:
```properties
%test.quarkus.datasource.qhorus.reactive=false
%test.quarkus.datasource.reactive=false
```
casehub-qhorus unconditionally activates `quarkus-hibernate-reactive-panache`, forcing all JDBC-only consumers to suppress the reactive pool in tests.
Action
Once casehubio/qhorus#141 ships, remove both properties. The fix gates the reactive extension behind classpath presence (PP-20260514-f41258) — no consumer-side suppression needed.
```bash
mvn verify -pl app -am # verify tests pass without the properties
```
Blocked by
casehubio/qhorus#141