rcbandit111
rcbandit111
@spencergibb is it possible to fix this issue soon? Unfortunately it's blocking my project.
@DawnSouther I want to test your temporary solution. Can you share what is the content of `TusCorsProcessor`?
@DawnSouther Can you share also what are the imports for this class? I can't find imports for `StrUtil` and `TusConsts`.
@DawnSouther I tried this: ``` @Bean public RoutePredicateHandlerMapping tusRoutePredicateHandlerMapping(FilteringWebHandler webHandler, RouteLocator routeLocator, GlobalCorsProperties globalCorsProperties, Environment environment) { RoutePredicateHandlerMapping routePredicateHandlerMapping = new RoutePredicateHandlerMapping(webHandler, routeLocator, globalCorsProperties, environment); routePredicateHandlerMapping.setCorsProcessor(new CrackCorsProcessor()); return routePredicateHandlerMapping; }...
@DawnSouther Sorry I don't get it. Can you show me code example, please?
Thanks, waiting for fix.
@spencergibb I tested RestTemplate client into 2022.0.3 but I get ``` java.lang.IllegalStateException: block()/blockFirst()/blockLast() are blocking, which is not supported in thread reactor-http-nio-3 at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:83) ~[reactor-core-3.5.6.jar:3.5.6] ``` Any idea when to...
@spencergibb Which stable version of Spring gateway I can use till then?
@spencergibb I tried to exclude spring-cloud/spring-cloud-config using this configuration into gradle: ``` configurations { configureEach { exclude group: 'org.springframework.cloud', module: 'spring-cloud-starter-config' } } ``` But again it's not working. Any...
What should be the import for `KeycloakRealmRolesGrantedAuthoritiesConverter`?