Skip to content

Commit

Permalink
Correct trace statement
Browse files Browse the repository at this point in the history
  • Loading branch information
liamfallon committed Dec 16, 2024
1 parent 8d7ab5a commit 24cdf07
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 24cdf07

Please sign in to comment.