Skip to content

Commit

Permalink
[Improvement] Remove unnecessary logging of cluster interface (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
s7monk authored and SteNicholas committed Jul 12, 2024
1 parent 4e0f9bf commit 3505bf3
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ public void checkClusterHeartbeatStatus() {
QueryWrapper<ClusterInfo> queryWrapper =
new QueryWrapper<ClusterInfo>().eq("enabled", true);
for (ClusterInfo clusterInfo : clusterMapper.selectList(queryWrapper)) {
log.info(
"Starting a scheduled job to check cluster: `{}` status ...",
clusterInfo.getClusterName());
if (EngineType.SPARK.name().equals(clusterInfo.getType().toUpperCase())) {
log.warn(
"Current engine type: {} doesn't support checking Cluster status.",
Expand Down

0 comments on commit 3505bf3

Please sign in to comment.