mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: use any rather than interface{} (#74066)
This commit is contained in:
@@ -585,7 +585,7 @@ func (i *searchIndex) reIndexFromScratch(ctx context.Context) {
|
||||
}
|
||||
}
|
||||
|
||||
func (i *searchIndex) withCtxData(ctx context.Context, params ...interface{}) []interface{} {
|
||||
func (i *searchIndex) withCtxData(ctx context.Context, params ...any) []any {
|
||||
traceID := tracing.TraceIDFromContext(ctx, false)
|
||||
if traceID != "" {
|
||||
params = append(params, "traceID", traceID)
|
||||
|
||||
Reference in New Issue
Block a user