CloudMigrations: Fix typo in trace name (#91261)

This commit is contained in:
lean.dev
2024-07-31 10:24:40 -03:00
committed by GitHub
parent e8c30c86f0
commit 235f223aef
+1 -1
View File
@@ -480,7 +480,7 @@ func (cma *CloudMigrationAPI) GetSnapshot(c *contextmodel.ReqContext) response.R
// 403: forbiddenError
// 500: internalServerError
func (cma *CloudMigrationAPI) GetSnapshotList(c *contextmodel.ReqContext) response.Response {
ctx, span := cma.tracer.Start(c.Req.Context(), "MigrationAPI.GetShapshotList")
ctx, span := cma.tracer.Start(c.Req.Context(), "MigrationAPI.GetSnapshotList")
defer span.End()
uid := web.Params(c.Req)[":uid"]