Skip to content

Commit f95d768

Browse files
author
Michael Wunderlich
committed
Update X-Ray SDK to 1.0.2-beta
1 parent 69a53a1 commit f95d768

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@ dependencies {
3535
compile("com.amazonaws:aws-xray-recorder-sdk-aws-sdk-instrumentor")
3636
testCompile("junit:junit:4.11")
3737
compile("com.fasterxml.jackson.core:jackson-databind:2.8.4")
38-
compile("commons-validator:commons-validator:1.5.1")
3938
}
4039

4140
dependencyManagement {
4241
imports {
4342
mavenBom("com.amazonaws:aws-java-sdk-bom:1.11.67")
44-
mavenBom("com.amazonaws:aws-xray-recorder-sdk-bom:1.0.0-beta")
43+
mavenBom("com.amazonaws:aws-xray-recorder-sdk-bom:1.0.2-beta")
4544
}
4645
}
4746
task wrapper(type: Wrapper) {

src/main/java/scorekeep/WebConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212
import javax.servlet.Filter;
1313
import java.net.URL;
1414

15+
1516
@Configuration
1617
public class WebConfig {
1718

1819
@Bean
1920
public Filter TracingFilter() {
20-
return new AWSXRayServletFilter();
21+
return new AWSXRayServletFilter("Scorekeep");
2122
}
2223

2324
@Bean

0 commit comments

Comments
 (0)