Edgeware.R2
to Finchley.BUILD-SNAPSHOT
, respectively. It was easier than I thought it would be.
ReplayProcessor.onNext(...)
asynchronous using Project Reactor?
Mono.fromCallable { } .subscribeOn(Schedulers.elastic()).subscribe()
(Kotlin)
@spencergibb Do I use the AddRequestHeader GatewayFilter Factory
if I want to pass an Authorization JWT header to downstream services like so
spring:
cloud:
gateway:
routes:
- id: add_request_header_route
uri: http://example.org
filters:
- AddRequestHeader=Authorization
or would that just put a blank Authorization header in the request?
Also, how would I get the route prefix stripped or does that happen by default? For example:
return builder.routes()
.route {
it.path("/uaa/**")
.uri("lb://uaa-service")
}
.route {
it.path("/districts/**")
.uri("lb://districts")
}.build()
In this code are the /uaa and /districts prefixes stripped before the request is sent to the proxied service?
io.netty.handler.ssl.NotSslRecordException