Updates to new routing client broker tcp properties

This commit is contained in:
Spencer Gibb
2020-08-31 19:14:58 -04:00
committed by GitHub
parent 85b591cb89
commit f0ad6bf8ac

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");
}