jmformenti
jmformenti
We are getting this exception trying to run a container: ``` org.testcontainers.shaded.com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type com.github.dockerjava.api.model.Capability from String "BPF": value not one of declared Enum instance names:...
In order to debug low-level details during development, it would be very useful to be able to see the payload of requests and responses. Is there a way to enable...
We are working on a VUE application (client side rendering) to manage our own Wikibase instance and we want users to login using our application with OAuth. We have our...
Simplified database configuration using the new Spring Boot Docker Compose feature. You can use MySQL or PostgreSQL by simply defining the Spring Boot profile: ```bash ./mvnw spring-boot:run -Dspring-boot.run.profiles=mysql ``` or...
Running a simple test using `@EnableMockOperator` annotation: ``` @SpringBootTest @ActiveProfiles("test") @EnableMockOperator public class MyReconcilerSpringBootIT { @Test void contextLoads() { } } ``` At the beginning of the execution, my reconciler...