Skip to content

Commit

Permalink
Update tracing statement
Browse files Browse the repository at this point in the history
  • Loading branch information
liamfallon committed Dec 12, 2024
1 parent 0c2d3e2 commit 6b6afe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cache/memory/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func (r *cachedRepository) CreatePackageRevision(ctx context.Context, obj *v1alp
}

func (r *cachedRepository) ClosePackageRevisionDraft(ctx context.Context, prd repository.PackageRevisionDraft, version string) (repository.PackageRevision, error) {
ctx, span := tracer.Start(ctx, "cachedDraft::Close", trace.WithAttributes())
ctx, span := tracer.Start(ctx, "cachedRepository::ClosePackageRevisionDraft", trace.WithAttributes())
defer span.End()

v, err := r.Version(ctx)
Expand Down

0 comments on commit 6b6afe2

Please sign in to comment.