blob: a8069f5d2dc157989e43e317180504757ad02a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
package beanstalk
import (
"time"
"github.com/spiral/roadrunner/v2/utils"
)
const (
tubePriority string = "tube_priority"
tube string = "tube"
reserveTimeout string = "reserve_timeout"
)
type GlobalCfg struct {
Addr string `mapstructure:"addr"`
Timeout time.Duration `mapstructure:"timeout"`
}
func (c *GlobalCfg) InitDefault() {
if c.Addr == "" {
c.Addr = "tcp://127.0.0.1:11300"
}
if c.Timeout == 0 {
c.Timeout = time.Second * 30
}
}
type Config struct {
PipePriority int64 `mapstructure:"priority"`
TubePriority *uint32 `mapstructure:"tube_priority"`
Tube string `mapstructure:"tube"`
ReserveTimeout time.Duration `mapstructure:"reserve_timeout"`
}
func (c *Config) InitDefault() {
if c.Tube == "" {
c.Tube = "default"
}
if c.ReserveTimeout == 0 {
c.ReserveTimeout = time.Second * 1
}
if c.TubePriority == nil {
c.TubePriority = utils.Uint32(0)
}
if c.PipePriority == 0 {
c.PipePriority = 10
}
}
|