RunPeriodicMaintenance и RunCleanup удалены; scheduler политик в StartBackground; deprecated /postgres/cleanup принимает policy_id. Co-authored-by: Cursor <[email protected]>
9 lines
216 B
Go
9 lines
216 B
Go
package repository
|
|
|
|
import "context"
|
|
|
|
// RunPeriodicMaintenance is a no-op; retention is driven by maintenance_policy rows (UI-configured).
|
|
func (p *Postgres) RunPeriodicMaintenance(ctx context.Context) {
|
|
_ = ctx
|
|
}
|