Lasse Hellman
Lasse Hellman
A simpler solution would be to just edit `vars/os_RedHat.yml` With: `samba_selinux_packages:` ` - "{{ 'python3-libsemanage' if ansible_distribution_major_version|int >= 8 else 'libsemanage-python' }}"` if someone can confirm that RHEL 8 also...
It is possible to use MariaDB connector, however native support from knex would be appreciated. Using `mysql` was a blocker for me, since `mysql` doesn't support MariaDB's Authentication Plugin `unix_socket`....
Here is an similar issue and some more information: https://github.com/spring-projects/spring-boot/issues/31961
The solution might be to just update org.apache.shiro.spring.web.config.ShiroRequestMappingConfig to take a list:: ``` package org.apache.shiro.spring.web.config; import java.util.List; import org.apache.shiro.spring.web.ShiroUrlPathHelper; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; @Configuration public class ShiroRequestMappingConfig { public ShiroRequestMappingConfig(List...
And should it be one `new ShiroUrlPathHelper()` for each bean? Or just create one and share?
Thanks for looking into ths. I'm using proj4js and the proj4js-definition from https://epsg.io/3021.js. According to http://proj4js.org/#:~:text=4326%27))%3B-,Axis%20order,-By%20default%2C%20proj4 the default is always `[x=longitude,y=latitude]`. My code is only using this order in the...