Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
Try switching back to original WorkerPool.
Browse files Browse the repository at this point in the history
  • Loading branch information
Baliedge committed Oct 10, 2023
1 parent 5aaf36e commit a963c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gubernator.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type V1Instance struct {
log FieldLogger
conf Config
isClosed bool
workerPool *WorkerPool2
workerPool *WorkerPool
}

var metricGetRateLimitCounter = prometheus.NewCounterVec(prometheus.CounterOpts{
Expand Down Expand Up @@ -125,7 +125,7 @@ func NewV1Instance(conf Config) (s *V1Instance, err error) {
conf: conf,
}

s.workerPool = NewWorkerPool2(&conf)
s.workerPool = NewWorkerPool(&conf)
s.global = newGlobalManager(conf.Behaviors, s)

// Register our instance with all GRPC servers
Expand Down

0 comments on commit a963c28

Please sign in to comment.