Upgrade to brave 3.0.0-rc-1

fixes gh-33
This commit is contained in:
Spencer Gibb
2015-08-31 18:47:51 -06:00
parent 69751ae63e
commit 78b60b605c
6 changed files with 14 additions and 67 deletions

View File

@@ -25,7 +25,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableAsync;
import com.github.kristofa.brave.LoggingSpanCollectorImpl;
import com.github.kristofa.brave.LoggingSpanCollector;
import com.github.kristofa.brave.SpanCollector;
/**
@@ -51,7 +51,7 @@ public class SampleZipkinApplication {
@Bean
@ConditionalOnProperty(value="sample.zipkin.enabled", havingValue="false")
public SpanCollector spanCollector() {
return new LoggingSpanCollectorImpl();
return new LoggingSpanCollector();
}
}