Skip to content

Commit 7e50c9f

Browse files
committed
sql: revert unredact error in temp object cleanup
Removed the `redact.Safe(err)` added in this PR: #148037. Informs: #146588 Release note: None
1 parent 98ab43e commit 7e50c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/sql/temporary_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ func (c *TemporaryObjectCleaner) Start(ctx context.Context, stopper *stop.Stoppe
627627
select {
628628
case <-nextTickCh:
629629
if err := c.doTemporaryObjectCleanup(ctx, stopper.ShouldQuiesce()); err != nil {
630-
log.Warningf(ctx, "failed to clean temp objects: %v", redact.Safe(err))
630+
log.Warningf(ctx, "failed to clean temp objects: %v", err)
631631
}
632632
case <-stopper.ShouldQuiesce():
633633
return

0 commit comments

Comments
 (0)