From f6f19794cb932ac279cc626130ed9b07f4a148e1 Mon Sep 17 00:00:00 2001 From: "youngjin.kim2" Date: Thu, 26 Oct 2023 13:04:04 +0900 Subject: [PATCH] [#10350] Removed zookeeper tests --- .../pinpoint/web/cluster/ZKServerFactory.java | 51 ------------------- 1 file changed, 51 deletions(-) delete mode 100644 web/src/test/java/com/navercorp/pinpoint/web/cluster/ZKServerFactory.java diff --git a/web/src/test/java/com/navercorp/pinpoint/web/cluster/ZKServerFactory.java b/web/src/test/java/com/navercorp/pinpoint/web/cluster/ZKServerFactory.java deleted file mode 100644 index d8e83176305b..000000000000 --- a/web/src/test/java/com/navercorp/pinpoint/web/cluster/ZKServerFactory.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2023 NAVER Corp. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -package com.navercorp.pinpoint.web.cluster; - -import org.apache.curator.test.InstanceSpec; -import org.apache.curator.test.TestingServer; -import org.apache.zookeeper.ZooKeeper; - -import java.util.Map; - -public class ZKServerFactory { - private ZKServerFactory() { - } - - public static TestingServer create(int zookeeperPort) throws Exception { - Map customProperties = Map.of( - "metricsProvider.className", "org.apache.zookeeper.metrics.impl.NullMetricsProvider" - ); - InstanceSpec spec = new InstanceSpec(null, zookeeperPort, - -1, -1, true, -1, - -1, -1, - customProperties); - return new TestingServer(spec, true); - } - - - public static void closeZk(ZooKeeper zookeeper) { - if (zookeeper != null) { - try { - zookeeper.close(); - } catch (InterruptedException e) { - Thread.currentThread().interrupt(); - } - } - } -}