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

@@ -29,7 +29,7 @@ import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.github.kristofa.brave.LoggingSpanCollectorImpl;
import com.github.kristofa.brave.LoggingSpanCollector;
import com.github.kristofa.brave.SpanCollector;
/**
@@ -74,7 +74,7 @@ public class SampleMessagingApplication {
@Bean
@ConditionalOnProperty(value="sample.zipkin.enabled", havingValue="false")
public SpanCollector spanCollector() {
return new LoggingSpanCollectorImpl();
return new LoggingSpanCollector();
}
}