fix typo in Stackdriver init method name. (#130)

This commit is contained in:
rghetia 2019-01-22 10:37:03 -08:00 committed by Ahmet Alp Balkan
parent 2ef073f600
commit 3812cf741d

View file

@ -181,7 +181,7 @@ func initStats(log logrus.FieldLogger, exporter *stackdriver.Exporter) {
}
}
func initStackDriverTracing(log logrus.FieldLogger) {
func initStackdriverTracing(log logrus.FieldLogger) {
// TODO(ahmetb) this method is duplicated in other microservices using Go
// since they are not sharing packages.
for i := 1; i <= 3; i++ {
@ -215,7 +215,7 @@ func initTracing(log logrus.FieldLogger) {
trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
initJaegerTracing(log)
initStackDriverTracing(log)
initStackdriverTracing(log)
}