change
This commit is contained in:
parent
f2ba1f79b8
commit
e396b608ae
|
@ -2,7 +2,6 @@ package com.taosdata.jdbc.utils;
|
|||
|
||||
import javax.management.*;
|
||||
import java.lang.management.ManagementFactory;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
|
||||
public class TaosInfo implements TaosInfoMBean {
|
||||
|
@ -17,6 +16,7 @@ public class TaosInfo implements TaosInfoMBean {
|
|||
MBeanServer server = ManagementFactory.getPlatformMBeanServer();
|
||||
ObjectName name = new ObjectName("TaosInfoMBean:name=TaosInfo");
|
||||
server.registerMBean(TaosInfo.getInstance(), name);
|
||||
|
||||
} catch (MalformedObjectNameException | InstanceAlreadyExistsException | MBeanRegistrationException | NotCompliantMBeanException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ public class TaosInfoMonitorTest {
|
|||
|
||||
List<Connection> connectionList = IntStream.range(0, 100).mapToObj(i -> {
|
||||
try {
|
||||
TimeUnit.SECONDS.sleep(1);
|
||||
TimeUnit.MILLISECONDS.sleep(100);
|
||||
return DriverManager.getConnection(url);
|
||||
} catch (SQLException | InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
|
@ -31,7 +31,7 @@ public class TaosInfoMonitorTest {
|
|||
while (rs.next()) {
|
||||
|
||||
}
|
||||
TimeUnit.MILLISECONDS.sleep(50);
|
||||
TimeUnit.MILLISECONDS.sleep(100);
|
||||
} catch (SQLException | InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ public class TaosInfoMonitorTest {
|
|||
connectionList.stream().forEach(conn -> {
|
||||
try {
|
||||
conn.close();
|
||||
TimeUnit.SECONDS.sleep(1);
|
||||
TimeUnit.MILLISECONDS.sleep(100);
|
||||
} catch (SQLException | InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue