fix:update dependencies.

pull/1230/head
Haotian Zhang 6 months ago
parent d7fd8e3ffe
commit 1b4dd7442d

@ -92,10 +92,10 @@
<revision>1.13.0-2022.0.4-SNAPSHOT</revision>
<!-- Spring Framework -->
<spring.framework.version>6.0.11</spring.framework.version>
<spring.framework.version>6.0.16</spring.framework.version>
<!-- Spring Boot -->
<spring.boot.version>3.1.2</spring.boot.version>
<spring.boot.version>3.1.7</spring.boot.version>
<!-- Spring Cloud -->
<spring.cloud.version>2022.0.4</spring.cloud.version>

@ -138,6 +138,11 @@ public class MockedConfigKVFile implements ConfigKVFile {
return false;
}
@Override
public String getMd5() {
return null;
}
@Override
public void addChangeListener(ConfigFileChangeListener configFileChangeListener) {

@ -20,6 +20,7 @@ package com.tencent.cloud.polaris.config.condition;
import java.io.IOException;
import java.net.ServerSocket;
import java.util.Objects;
import com.tencent.cloud.polaris.config.PolarisConfigAutoConfiguration;
import com.tencent.cloud.polaris.config.PolarisConfigBootstrapAutoConfiguration;
@ -67,7 +68,9 @@ public class ConditionalOnReflectRefreshTypeTest {
@AfterAll
static void afterAll() throws IOException {
serverSocket.close();
if (Objects.nonNull(serverSocket)) {
serverSocket.close();
}
}
@Test

@ -22,6 +22,7 @@ import java.io.IOException;
import java.lang.reflect.Method;
import java.net.ServerSocket;
import java.util.Collection;
import java.util.Objects;
import java.util.Optional;
import com.tencent.cloud.polaris.config.PolarisConfigBootstrapAutoConfiguration;
@ -71,7 +72,9 @@ public class SpringValueProcessorTest {
@AfterAll
static void afterAll() throws IOException {
serverSocket.close();
if (Objects.nonNull(serverSocket)) {
serverSocket.close();
}
}
@Test

@ -14,7 +14,7 @@ spring:
contract:
exposure: true
report:
enabled: false
enabled: true
stat:
enabled: true
port: 28083

@ -14,7 +14,7 @@ spring:
contract:
exposure: true
report:
enabled: false
enabled: true
stat:
enabled: true
port: 28084

@ -17,7 +17,7 @@ spring:
contract:
exposure: true
report:
enabled: false
enabled: true
circuitbreaker:
enabled: true
stat:

@ -21,7 +21,7 @@ spring:
contract:
exposure: true
report:
enabled: false
enabled: true
stat:
enabled: true
port: 28081

Loading…
Cancel
Save