Skip to content

Commit

Permalink
Fix build, run gojf
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
  • Loading branch information
bogdandrutu committed Oct 4, 2020
1 parent ce2294b commit 67d7e1a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ void addEvent() {
void droppingAttributes() {
final int maxNumberOfAttributes = 8;
TraceConfig traceConfig =
TraceConfig.getDefault().toBuilder()
TraceConfig.getDefault()
.toBuilder()
.setMaxNumberOfAttributes(maxNumberOfAttributes)
.build();
RecordEventsReadableSpan span = createTestSpan(traceConfig);
Expand All @@ -516,7 +517,8 @@ void droppingAttributes() {
void droppingAndAddingAttributes() {
final int maxNumberOfAttributes = 8;
TraceConfig traceConfig =
TraceConfig.getDefault().toBuilder()
TraceConfig.getDefault()
.toBuilder()
.setMaxNumberOfAttributes(maxNumberOfAttributes)
.build();
RecordEventsReadableSpan span = createTestSpan(traceConfig);
Expand Down

0 comments on commit 67d7e1a

Please sign in to comment.