diff options
author | Valery Piashchynski <[email protected]> | 2021-07-23 01:25:12 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-23 01:25:12 +0300 |
commit | 3f45d2c008c95daa923fef0c4c9022b2be462971 (patch) | |
tree | edb88b5470c448da2647715633f383d98818c7fb /plugins/jobs/drivers/beanstalk/consumer.go | |
parent | ed36f3ef0d18354ab18848aae488d139aefd1146 (diff) |
Update beanstalk options. Fix tube priority (correctly pass to the Put
method).
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/jobs/drivers/beanstalk/consumer.go')
-rw-r--r-- | plugins/jobs/drivers/beanstalk/consumer.go | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/jobs/drivers/beanstalk/consumer.go b/plugins/jobs/drivers/beanstalk/consumer.go index 32ce6ef7..8bd11a58 100644 --- a/plugins/jobs/drivers/beanstalk/consumer.go +++ b/plugins/jobs/drivers/beanstalk/consumer.go @@ -96,11 +96,6 @@ func NewBeanstalkConsumer(configKey string, log logger.Logger, cfg config.Config func FromPipeline(pipe *pipeline.Pipeline, log logger.Logger, cfg config.Configurer, e events.Handler, pq priorityqueue.Queue) (*JobConsumer, error) { const op = errors.Op("new_beanstalk_consumer") - const ( - tube string = "tube" - reserveTimeout string = "reserve_timeout" - ) - // PARSE CONFIGURATION ------- var globalCfg GlobalCfg @@ -134,7 +129,7 @@ func FromPipeline(pipe *pipeline.Pipeline, log logger.Logger, cfg config.Configu tout: globalCfg.Timeout, tName: pipe.String(tube, "default"), reserveTimeout: time.Second * time.Duration(pipe.Int(reserveTimeout, 5)), - tubePriority: uint32(pipe.Int(tube, 10)), + tubePriority: uint32(pipe.Int(tubePriority, 0)), priority: pipe.Priority(), // buffered with two because jobs root plugin can call Stop at the same time as Pause @@ -178,7 +173,7 @@ func (j *JobConsumer) Push(jb *job.Job) error { // <ttr> seconds, the job will time out and the server will release the job. // The minimum ttr is 1. If the client sends 0, the server will silently // increase the ttr to 1. Maximum ttr is 2**32-1. - id, err := j.pool.Put(bb.Bytes(), 0, item.Options.DelayDuration(), item.Options.TimeoutDuration()) + id, err := j.pool.Put(bb.Bytes(), j.tubePriority, item.Options.DelayDuration(), item.Options.TimeoutDuration()) if err != nil { errD := j.pool.Delete(id) if errD != nil { |