Skip to content

Commit

Permalink
fix: add default durations
Browse files Browse the repository at this point in the history
  • Loading branch information
varnastadeus committed Nov 29, 2021
1 parent 41d695f commit 737f15f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions actions/approve_csr_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ import (

func newApproveCSRHandler(log logrus.FieldLogger, clientset kubernetes.Interface) ActionHandler {
return &approveCSRHandler{
log: log,
clientset: clientset,
log: log,
clientset: clientset,
csrFetchInterval: 5 * time.Second,
initialCSRFetchTimeout: 5 * time.Minute,
}
}

Expand Down

0 comments on commit 737f15f

Please sign in to comment.