Cloudwatch: Change deprecated errorsource references (#97827)

This has been failing to compile, bringing down a _lot_ of tests along with it (notably the entire pkg/tests dir).
The `experimental/errorsource` package was deprecated, so the recommended replacement was used.
This commit is contained in:
Mariell Hoversholm
2024-12-12 11:37:11 +01:00
committed by GitHub
parent 5be8a9b3c3
commit 8f628a0695
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ func (e *cloudWatchExecutor) executeAnnotationQuery(ctx context.Context, pluginC
cli, err := e.getCWClient(ctx, pluginCtx, region)
if err != nil {
result = errorsource.AddDownstreamErrorToResponse(query.RefID, result, fmt.Errorf("%v: %w", "failed to get client", err))
result.Responses[query.RefID] = backend.ErrorResponseWithErrorSource(fmt.Errorf("%v: %w", "failed to get client", err))
return result, nil
}

View File

@ -23,7 +23,7 @@ var executeSyncLogQuery = func(ctx context.Context, e *cloudWatchExecutor, req *
instance, err := e.getInstance(ctx, req.PluginContext)
if err != nil {
errorsource.AddErrorToResponse(req.Queries[0].RefID, resp, err)
resp.Responses[req.Queries[0].RefID] = backend.ErrorResponseWithErrorSource(err)
return resp, nil
}

View File

@ -34,7 +34,7 @@ func (e *cloudWatchExecutor) executeTimeSeriesQuery(ctx context.Context, req *ba
instance, err := e.getInstance(ctx, req.PluginContext)
if err != nil {
errorsource.AddErrorToResponse(req.Queries[0].RefID, resp, err)
resp.Responses[req.Queries[0].RefID] = backend.ErrorResponseWithErrorSource(err)
return resp, nil
}