Skip to content

Commit

Permalink
Pass along the methodAnnotation and classAnnoation attributes during …
Browse files Browse the repository at this point in the history
…the instrumentaion config import
  • Loading branch information
jaikiran authored and trask committed Apr 22, 2017
1 parent 9bc7612 commit d24ea4c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,10 @@ abstract static class InstrumentationConfigDto {
private InstrumentationConfig convert() {
InstrumentationConfig.Builder builder = InstrumentationConfig.newBuilder()
.setClassName(className())
.setClassAnnotation(classAnnotation())
.setMethodDeclaringClassName(methodDeclaringClassName())
.setMethodName(methodName())
.setMethodAnnotation(methodAnnotation())
.addAllMethodParameterType(methodParameterTypes())
.setMethodReturnType(methodReturnType())
.addAllMethodModifier(methodModifiers())
Expand Down

0 comments on commit d24ea4c

Please sign in to comment.