Skip to content

Commit ab7aa17

Browse files
committed
server: fix recently introduced bug
Over in 609230c on `TestTenant.TracerI` we returned the function rather than the underlying tracer. Release note: None
1 parent bb9b3fd commit ab7aa17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/server/testserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ func (t *TestTenant) Tracer() *tracing.Tracer {
868868

869869
// TracerI is part of the serverutils.TestTenantInterface.
870870
func (t *TestTenant) TracerI() interface{} {
871-
return t.Tracer
871+
return t.Tracer()
872872
}
873873

874874
// SettingsWatcher is part of the serverutils.TestTenantInterface.

0 commit comments

Comments
 (0)