Skip to content

Commit

Permalink
chore: use a better name for internal const (caddyserver#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
mavimo committed Nov 5, 2023
1 parent 7906c21 commit 94444b3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/caddy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (

const (
// high enough QPS to fit all expected use cases.
defaultQPS = 1e6
highQPS = 1e6

// high enough Burst to fit all expected use cases.
defaultBurst = 1e6
highBurst = 1e6
)

func createLogger(verbose bool) *zap.SugaredLogger {
Expand Down Expand Up @@ -80,9 +80,10 @@ func createApiserverClient(logger *zap.SugaredLogger) (*kubernetes.Clientset, *v

logger.Infof("Creating API client for %s", cfg.Host)

cfg.QPS = defaultQPS
cfg.Burst = defaultBurst
cfg.QPS = highQPS
cfg.Burst = highBurst
cfg.ContentType = "application/vnd.kubernetes.protobuf"

client, err := kubernetes.NewForConfig(cfg)
if err != nil {
return nil, nil, err
Expand Down

0 comments on commit 94444b3

Please sign in to comment.