Skip to content

Commit

Permalink
fix typo in Stackdriver init method name. (GoogleCloudPlatform#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
rghetia authored and ahmetb committed Jan 22, 2019
1 parent 2ef073f commit 3812cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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++ {
Expand Down Expand Up @@ -215,7 +215,7 @@ func initTracing(log logrus.FieldLogger) {
trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})

initJaegerTracing(log)
initStackDriverTracing(log)
initStackdriverTracing(log)

}

Expand Down

0 comments on commit 3812cf7

Please sign in to comment.