Merge pull request #583 from spring-cloud/spencergibb-routing-tcp

Updates to new routing client broker tcp properties
This commit is contained in:
Oleg Zhurakousky
2020-09-01 07:20:24 +02:00
committed by GitHub

View File

@@ -109,8 +109,8 @@ public class RoutingBrokerTests {
.run("--logging.level.org.springframework.cloud.function=DEBUG",
"--io.rsocket.routing.client.enabled=true",
"--io.rsocket.routing.client.service-name=samplefn",
"--io.rsocket.routing.client.brokers[0].host=localhost",
"--io.rsocket.routing.client.brokers[0].port=" + routingBrokerProxyPort,
"--io.rsocket.routing.client.brokers[0].tcp.host=localhost",
"--io.rsocket.routing.client.brokers[0].tcp.port=" + routingBrokerProxyPort,
"--io.rsocket.routing.broker.enabled=false",
"--spring.cloud.function.definition=uppercase");
@@ -121,8 +121,8 @@ public class RoutingBrokerTests {
"--io.rsocket.routing.client.enabled=true",
"--io.rsocket.routing.client.service-name=testclient",
routingWithProperty ? "--io.rsocket.routing.client.address.uppercase.service_name=samplefn" : "",
"--io.rsocket.routing.client.brokers[0].host=localhost",
"--io.rsocket.routing.client.brokers[0].port=" + routingBrokerProxyPort,
"--io.rsocket.routing.client.brokers[0].tcp.host=localhost",
"--io.rsocket.routing.client.brokers[0].tcp.port=" + routingBrokerProxyPort,
"--io.rsocket.routing.broker.enabled=false");
}