Skip to content

Commit

Permalink
Update X-Ray SDK to 1.0.2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wunderlich committed Jan 25, 2017
1 parent 69a53a1 commit f95d768
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ dependencies {
compile("com.amazonaws:aws-xray-recorder-sdk-aws-sdk-instrumentor")
testCompile("junit:junit:4.11")
compile("com.fasterxml.jackson.core:jackson-databind:2.8.4")
compile("commons-validator:commons-validator:1.5.1")
}

dependencyManagement {
imports {
mavenBom("com.amazonaws:aws-java-sdk-bom:1.11.67")
mavenBom("com.amazonaws:aws-xray-recorder-sdk-bom:1.0.0-beta")
mavenBom("com.amazonaws:aws-xray-recorder-sdk-bom:1.0.2-beta")
}
}
task wrapper(type: Wrapper) {
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/scorekeep/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
import javax.servlet.Filter;
import java.net.URL;


@Configuration
public class WebConfig {

@Bean
public Filter TracingFilter() {
return new AWSXRayServletFilter();
return new AWSXRayServletFilter("Scorekeep");
}

@Bean
Expand Down

0 comments on commit f95d768

Please sign in to comment.