Skip to content

Commit

Permalink
Remove unused field
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Feb 1, 2024
1 parent 8eb519f commit fc9aa8f
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public class ActiveClusterMonitor

private final List<TrinoClusterStatsObserver> clusterStatsObservers;
private final GatewayBackendManager gatewayBackendManager;
private final int connectionTimeout;
private final int taskDelayMin;
private final ClusterStatsMonitor clusterStatsMonitor;
private volatile boolean monitorActive = true;
Expand All @@ -54,11 +53,9 @@ public ActiveClusterMonitor(
{
this.clusterStatsObservers = clusterStatsObservers;
this.gatewayBackendManager = gatewayBackendManager;
this.connectionTimeout = monitorConfiguration.getConnectionTimeout();
this.taskDelayMin = monitorConfiguration.getTaskDelayMin();
this.clusterStatsMonitor = clusterStatsMonitor;
log.info("Running cluster monitor with connection timeout of {} and task delay of {}",
connectionTimeout, taskDelayMin);
log.info("Running cluster monitor with task delay of {}", taskDelayMin);
}

/**
Expand Down

0 comments on commit fc9aa8f

Please sign in to comment.