Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rusenask committed Dec 11, 2018
1 parent ed40874 commit 2e64eff
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
7 changes: 0 additions & 7 deletions cache/memory/memory.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"sync"

"github.com/keel-hq/keel/cache"

log "github.com/sirupsen/logrus"
)

type Cache struct {
Expand Down Expand Up @@ -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")
}
}

Expand Down
3 changes: 0 additions & 3 deletions provider/kubernetes/approvals.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 2e64eff

Please sign in to comment.