feature/323_gcr_name_override
Karolis Rusenas 2018-12-11 23:21:27 +00:00
parent ed40874c46
commit 2e64effc7b
2 changed files with 0 additions and 10 deletions

View File

@ -5,8 +5,6 @@ import (
"sync"
"github.com/keel-hq/keel/cache"
log "github.com/sirupsen/logrus"
)
type Cache struct {
@ -59,11 +57,6 @@ func (c *Cache) List(prefix string) (map[string][]byte, error) {
dst := make([]byte, len(v))
copy(dst, v)
values[k] = dst
log.WithFields(log.Fields{
"KEY": k,
"VALUE": string(dst),
}).Info("CACHE LIST")
}
}

View File

@ -95,9 +95,6 @@ func (p *Provider) isApproved(event *types.Event, plan *UpdatePlan) (bool, error
approval.Delta(),
)
// fmt.Println("requesting approval, identifier: ", plan.Resource.Namespace)
fmt.Println("requesting approval, identifier: ", identifier)
return false, p.approvalManager.Create(approval)
}