mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 00:17:20 +02:00
Only log EPP and WHIOS connections
Only connections that have backend are of interest to us. Move the logging statement accordingly. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=208898433
This commit is contained in:
parent
fc75e08061
commit
8a1c99e22b
1 changed files with 2 additions and 1 deletions
|
@ -93,13 +93,14 @@ public class ProxyServer implements Runnable {
|
||||||
inboundChannel.attr(PROTOCOL_KEY).set(inboundProtocol);
|
inboundChannel.attr(PROTOCOL_KEY).set(inboundProtocol);
|
||||||
inboundChannel.attr(RELAY_BUFFER_KEY).set(new ArrayDeque<>());
|
inboundChannel.attr(RELAY_BUFFER_KEY).set(new ArrayDeque<>());
|
||||||
addHandlers(inboundChannel.pipeline(), inboundProtocol.handlerProviders());
|
addHandlers(inboundChannel.pipeline(), inboundProtocol.handlerProviders());
|
||||||
logger.atInfo().log("Connection established: %s %s", inboundProtocol.name(), inboundChannel);
|
|
||||||
|
|
||||||
if (!inboundProtocol.hasBackend()) {
|
if (!inboundProtocol.hasBackend()) {
|
||||||
// If the frontend has no backend to relay to (health check, web WHOIS redirect, etc), start
|
// If the frontend has no backend to relay to (health check, web WHOIS redirect, etc), start
|
||||||
// reading immediately.
|
// reading immediately.
|
||||||
inboundChannel.config().setAutoRead(true);
|
inboundChannel.config().setAutoRead(true);
|
||||||
} else {
|
} else {
|
||||||
|
logger.atInfo().log(
|
||||||
|
"Connection established: %s %s", inboundProtocol.name(), inboundChannel);
|
||||||
// Connect to the relay (outbound) channel specified by the BackendProtocol.
|
// Connect to the relay (outbound) channel specified by the BackendProtocol.
|
||||||
BackendProtocol outboundProtocol = inboundProtocol.relayProtocol();
|
BackendProtocol outboundProtocol = inboundProtocol.relayProtocol();
|
||||||
Bootstrap bootstrap =
|
Bootstrap bootstrap =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue