Endre Moen
Endre Moen
Yes, I found the commit where the change was done: [java/org/springframework/data/mongodb/config/MongoConfigurationSupport.java](https://github.com/spring-projects/spring-data-mongodb/commit/cfd55be95bf7bf70bc1fdf243209591c0b0c4d5b#diff-ad4017207d4ae8d4873841039c15eb381df9a5caaf06a5e2c4b9f24e01081c69)
Before it was mappingContext.setInitialEntitySet(getInitialEntitySet()); and now it is mappingContext.setManagedTypes(managedTypes); So my question is - how to I migrate with this change in mind - now that mongoMappingContext() takes a new...
> Basically its the initial entity set now exposed as a dedicated type which helps detect them during a potential AOT phase to run inspections required when building a GraalVM...
The attached image shows the problem - in spring-data-mongodb 4.0 the method getMappingBasePackages() which is defined with @ Override is not called anymore: https://ibb.co/ZdChJbQ The stacktrace to the left is...
I know getMappingBasePackages is no longer called! I see it when debugging. The default implementation of getMappingBasePackage is called instead. And that is the reason for the error. A minimal...
implementation doesnt work
Same here. Wasnt able to start cursor until I added export LIBGL_ALWAYS_SOFTWARE=1. Im on ubuntu 24.04
Try it with a dataset like: ``` 0 X Y 3 0 0.281 -0.281 0.281 0.281 1 -0.171 0.171 -0.171 -0.171 2 -0.517 0.517 -0.517 -0.517 3 0.667 -0.667 0.667...
Same thing with pcorr(): ``` [lib/python3.12/site-packages/pingouin/effsize.py:152](lib/python3.12/site-packages/pingouin/effsize.py:152): RuntimeWarning: divide by zero encountered in arctanh z = np.arctanh(stat) # R-to-z transform [lib/python3.12/site-packages/pingouin/correlation.py:59](lib/python3.12/site-packages/pingouin/correlation.py:59): RuntimeWarning: divide by zero encountered in scalar divide ``` And...