aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-01-04 13:25:32 +0100
committerHarald Musum <musum@yahooinc.com>2023-01-04 13:25:32 +0100
commitfefd2af6f868eb04b058e50874fb93e9a72df8da (patch)
tree0ecf7fb46d9c0d68b8ef81cae86d4ba974aff035 /clustercontroller-core/src/main
parent5267d4415bdc912abc550d50384578122e8598f3 (diff)
Don't swallow exception
Diffstat (limited to 'clustercontroller-core/src/main')
-rw-r--r--clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/rpc/RpcServer.java17
1 files changed, 4 insertions, 13 deletions
diff --git a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/rpc/RpcServer.java b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/rpc/RpcServer.java
index dcef432aec0..5e740c5f03c 100644
--- a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/rpc/RpcServer.java
+++ b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/rpc/RpcServer.java
@@ -4,6 +4,7 @@ package com.yahoo.vespa.clustercontroller.core.rpc;
import com.yahoo.jrt.Acceptor;
import com.yahoo.jrt.ErrorCode;
import com.yahoo.jrt.Int32Value;
+import com.yahoo.jrt.ListenFailedException;
import com.yahoo.jrt.Method;
import com.yahoo.jrt.Request;
import com.yahoo.jrt.Spec;
@@ -23,7 +24,6 @@ import com.yahoo.vdslib.state.State;
import com.yahoo.vespa.clustercontroller.core.ContentCluster;
import com.yahoo.vespa.clustercontroller.core.MasterElectionHandler;
import com.yahoo.vespa.clustercontroller.core.NodeInfo;
-import com.yahoo.vespa.clustercontroller.core.Timer;
import com.yahoo.vespa.clustercontroller.core.listeners.NodeListener;
import java.io.PrintWriter;
import java.io.StringWriter;
@@ -39,7 +39,6 @@ public class RpcServer {
private static final Logger log = Logger.getLogger(RpcServer.class.getName());
- private final Timer timer;
private final Object monitor;
private final String clusterName;
private final int fleetControllerIndex;
@@ -51,11 +50,8 @@ public class RpcServer {
private final List<Request> rpcRequests = new LinkedList<>();
private MasterElectionHandler masterHandler;
private final BackOffPolicy slobrokBackOffPolicy;
- private long lastConnectErrorTime = 0;
- private String lastConnectError = "";
- public RpcServer(Timer timer, Object monitor, String clusterName, int fleetControllerIndex, BackOffPolicy bop) {
- this.timer = timer;
+ public RpcServer(Object monitor, String clusterName, int fleetControllerIndex, BackOffPolicy bop) {
this.monitor = monitor;
this.clusterName = clusterName;
this.fleetControllerIndex = fleetControllerIndex;
@@ -99,13 +95,8 @@ public class RpcServer {
log.log(Level.FINE, () -> "Fleetcontroller " + fleetControllerIndex + ": RPC server attempting to bind to port " + port);
try {
acceptor = supervisor.listen(new Spec(port));
- } catch (Exception e) {
- long time = timer.getCurrentTimeInMillis();
- if (!e.getMessage().equals(lastConnectError) || time - lastConnectErrorTime > 60 * 1000) {
- lastConnectError = e.getMessage();
- lastConnectErrorTime = time;
- log.log(Level.WARNING, "Failed to bind or initialize RPC server socket: " + e.getMessage());
- }
+ } catch (ListenFailedException e) {
+ throw new RuntimeException(e);
}
log.log(Level.FINE, () -> "Fleetcontroller " + fleetControllerIndex + ": RPC server listening to port " + acceptor.port());
SlobrokList slist = new SlobrokList();