Skip to content

Commit d706ce5

Browse files
committed
dashboard: Update Spring Boot starter to 2.2.13.RELEASE
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
1 parent 3cd8970 commit d706ce5

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

sentinel-dashboard/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<properties>
1616
<resource.delimiter>@</resource.delimiter>
17-
<spring.boot.version>2.0.5.RELEASE</spring.boot.version>
17+
<spring.boot.version>2.2.13.RELEASE</spring.boot.version>
1818
<curator.version>4.0.1</curator.version>
1919
</properties>
2020

@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>log4j</groupId>
6565
<artifactId>log4j</artifactId>
66-
<version>1.2.14</version>
66+
<version>1.2.17</version>
6767
</dependency>
6868

6969
<dependency>

sentinel-dashboard/src/test/java/com/alibaba/csp/sentinel/dashboard/config/NoAuthConfigurationTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import org.springframework.boot.test.context.TestConfiguration;
2121
import org.springframework.context.annotation.Bean;
2222
import org.springframework.context.annotation.Import;
23+
import org.springframework.context.annotation.Primary;
2324

2425
import javax.servlet.http.HttpServletRequest;
2526

@@ -33,7 +34,8 @@
3334
public class NoAuthConfigurationTest {
3435

3536
@Bean
36-
public AuthService<HttpServletRequest> httpServletRequestAuthService() {
37+
@Primary
38+
public AuthService<HttpServletRequest> httpServletRequestNoopAuthService() {
3739
return new FakeAuthServiceImpl();
3840
}
3941

0 commit comments

Comments
 (0)