Annotations: Remove extraneous, debug log messages (#80670)

* drop log messages

* Revert timer

* fix returns, no need to capture vars for log lines anymore
This commit is contained in:
Alexander Weaver
2024-01-16 14:48:11 -06:00
committed by GitHub
parent 7b8db643a3
commit 68d4e8a930
2 changed files with 4 additions and 13 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ func (j cleanUpJob) String() string {
func (srv *CleanUpService) Run(ctx context.Context) error {
srv.cleanUpTmpFiles(ctx)
ticker := time.NewTicker(time.Minute * 1)
ticker := time.NewTicker(time.Minute * 10)
for {
select {
case <-ticker.C: