Add log line for unexpected queries in ds querier (#100147)

This commit is contained in:
Sarah Zinger 2025-02-06 11:05:30 -05:00 committed by GitHub
parent 126396399e
commit 0035ed8a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,6 +160,7 @@ func (r *queryREST) Connect(connectCtx context.Context, name string, _ runtime.O
// Actually run the query
rsp, err := b.execute(ctx, req)
if err != nil {
b.log.Error("hit unexpected error while executing query, this will show as an unhandled k8s status error", "err", err)
responder.Error(err)
return
}